<!-- Begin VIEWER AND POP-UP OPTIONS CODE

// ONLY USE lowercase FOR ALL OPTIONS




// AV POPUP OPTIONS

var AV_width 		= 450		// AV POPUP HEIGHT
var AV_height 		= 600		// AV POPUP HEIGHT
var AVscrollbarS 	= "1"		// TURN ON NEWS SCROLLBARS "1" FOR ON "0" FOR OFF
var AVviewer	 	= "no"		// yes/ NEWS FULL SCREEN OR no/POPUP MODE






// COPYRIGHT 2007 ©
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE






// START AV POPUP

function popUpAV(URL) {
day = new Date();
id = day.getTime();
   if (AVviewer == "no") {
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + AVscrollbarS + ',location=0,statusbar=0,menubar=0,resizable=1,width='+AV_width+',height='+AV_height+'');");
}
else 
if (AVviewer == "yes") {
eval("page" + id + " = window.open(URL);");
}
}









IEMhover = function() {
	var IEMh = document.getElementById("menunav").getElementsByTagName("LI");
	for (var i=0; i<IEMh.length; i++) {
		IEMh[i].onmouseover=function() {
			this.className+=" IEMhover";
		}
		IEMh[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" IEMhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", IEMhover);











// End -->