﻿<!-- Begin PAGE POPUP OPTIONS CODE


//  use only lowercase on options


var viewerPAGE	 	= "no"		// yes/FULL SCREEN OR no/POPUP MODE
var PAGE_width 		= "800"		// PAGE WINDOW WIDTH
var PAGE_height 	= "500"		// PAGE WINDOW HEIGHT


// DO NOT EDIT BELOW THIS LINE


// START PAGE POPUP


function popUpPAGE(URL) {
day = new Date();
id = day.getTime();

   if (viewerPAGE == "no") {
day = new Date();
id = 'FAQWindow';
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+PAGE_width+',height='+PAGE_height+'');");
}
else 
if (viewerPAGE == "yes") {
eval("page" + id + " = window.open(URL);");
}
}



// End -->