// FAQ POPUP OPTIONS

var FAQ_width 		= 500		// FAQ POPUP HEIGHT
var FAQ_height 		= 500		// FAQ POPUP HEIGHT
var faqscrollbarS 	= "0"		// TURN ON FAQ SCROLLBARS "1" FOR ON "0" FOR OFF
var FAQviewer	 	= "no"		// yes/ FAQ FULL SCREEN OR no/POPUP MODE

// BRANCH POPUP OPTIONS

var BRANCH_width 		= 500	// BRANCH POPUP HEIGHT
var BRANCH_height 		= 500	// BRANCH POPUP HEIGHT
var branchscrollbarS 	= "0"	// TURN ON BRANCH SCROLLBARS "1" FOR ON "0" FOR OFF
var BRANCHviewer	 	= "no"	// yes/ BRANCH FULL SCREEN OR no/POPUP MODE

// WEB POPUP OPTIONS

var WEB_width 		= 500		// WEB POPUP HEIGHT
var WEB_height 		= 500		// WEB POPUP HEIGHT
var webscrollbarS 	= "1"		// TURN ON WEB SCROLLBARS "1" FOR ON "0" FOR OFF
var WEBviewer	 	= "yes"		// yes/ WEB FULL SCREEN OR no/POPUP MODE

// START FAQ POPUP

function popUpFAQ(URL) {
day = new Date();
id = day.getTime();
   if (FAQviewer == "no") {
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + faqscrollbarS + ',location=0,statusbar=0,menubar=0,resizable=1,width='+FAQ_width+',height='+FAQ_height+'');");
}
else 
if (FAQviewer == "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 -->

// START BRANCH POPUP

function popUpBRANCH(URL) {
day = new Date();
id = day.getTime();
   if (BRANCHviewer == "no") {
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + branchscrollbarS + ',location=0,statusbar=0,menubar=0,resizable=1,width='+BRANCH_width+',height='+BRANCH_height+'');");
}
else 
if (BRANCHviewer == "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 -->

// START WEB POPUP

function popUpWEB(URL) {
day = new Date();
id = day.getTime();
   if (WEBviewer == "no") {
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=' + webcrollbarS + ',location=0,statusbar=0,menubar=0,resizable=1,width='+WEB_width+',height='+WEB_height+'');");
}
else 
if (WEBviewer == "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 -->
