<!-- ©webmasta [www.w3coders.com] - we take no prizonerz
var mainLinks =new Array(
	 '1|index.htm                 |self'
	,'2|main_broadbandplans.htm   |self'
	,'3|main_prepaidcards.htm     |self'
	,'4|main_businessclass.htm    |self'
	,'5|main_support.htm          |self'
	,'6|main_contact.htm          |pop'
	,'7|https://www.avidcall.com/member/call/9KGNHVB.cfm          |pop'
);
//alert('flashMenu.js');

function getPage(i) {             //CF mainFlash ExternalInterface;
	//alert(i)
	var oLink, oTarg;
	var aArr =mainLinks[i-1].split('|'); //arr counts from 0 so we take 1 from arg
		oLink =aArr[1].replace(/\s+$/, '');
		oTarg =aArr[2];
		//alert(oLink +':'+oTarg);
		if(oTarg =='self') { location =oLink; return true; }
		if(oTarg =='pop') {
			if(i ==7) {
				this.newWindow = window.open(oLink, 'Call', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=440,height=350');this.newWindow.focus();this.newWindow.opener=window;return false;
			}
			else { openPop(oLink, 'popper'); return true; }
		}
};
//-->


