//------------JS Error report ----------------------- function report_error(msg, url, line){	alert("Please ignore error. \nBeta mode testing. \n Line "+line +"\n"+msg);}self.onerror = report_error;//---------Pop up window handler ----------function popUp(myURL,myWidth,myHeight){	opts = "toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=no";	opts += ",height=" +myHeight  + ",width=" +myWidth ;	popwin = window.open(myURL, "_new", opts);	popwin.moveTo(20,20); } //---------- Create Site Menus ------function siteMenu(){		var myMenu ="";		myMenu += '<table width="100%"  border="0" cellpadding="0" cellspacing="0">';                for (m=0; m < menus.length; m++){        	myMenu += '<tr><td height="20" bgcolor="#030089" class="style1">';			myMenu += menus[m].name;			myMenu +='</td>';			myMenu +='</tr>';					for (i=0; i < menus[m].menuItems.length; i++){				subMenu = menus[m].menuItems[i];            	myMenu +='<tr><td class="menuLink" style="padding-left:10px">';            	myMenu +='<p>';				if (subMenu.label == currentPage)				{					myMenu +='<b>></b> '+subMenu.label;				}				else				{					myMenu +=':: ';					myMenu +='<a href="';					myMenu += subMenu.url;					myMenu +='" class="menuLink">';					myMenu += subMenu.label;					myMenu +='</a>';				}				myMenu +='</a><br>';			}			myMenu +='<br></p>';			myMenu +='</td></tr>';				}	myMenu +='</table>';	//alert(myMenu);	return myMenu;}function copyright(){ 	copyright ='Patriotism For All ©2004-2007';return copyright;}	