// JavaScript Document

//Pop ups for the pages -------------------------------------
var win= null;
function popUpTest(theUrl){
	var screenWidth = screen.width;
	var screenHeight = screen.height;
	settings = "height="+Math.round(screenHeight*.95)+",width="+Math.round(screenWidth*.99)+",toolbar=1,scrollbars=1,location=1,statusbar=0,menubar=1,resizable=1,left=0,top=0,screenX=0,screenY=0"
	win=window.open(theUrl,"KonaRe",settings);
 //	window.self.close();
	//if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}
<!-- Begin pop up window
function popUp(URL) {
var win0= null;
win0=window.open(URL,"thePop",'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,height=435,width=535,left=0,top=0,screenX =0,screenY=0');

}
// End -->

//pops up the SNIFFER
var win1= null;
function popUpCheck(theUrl){
	var screenWidth = screen.width;
	var screenHeight = screen.height;
	settings = "height=270,width=450,toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,left="+(screenWidth/2 -250)+",top="+(screenHeight/2 -150)+",screenX="+(screenWidth/2 -250)+",screenY="+(screenHeight/2 -150)+""
	win1=window.open(theUrl,"Test",settings);
	//if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

var win4= null;
function popUpDemo(URL) {
win4=window.open(URL,"adminDemopop3",'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,height=520,width=800,left=0,top=0,screenX =0,screenY=0');
}


<!-- Begin pop up window for ipix
function popUpIPix(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=785,height=510,left = 0,top = 0');");
}
// End -->