function doPop(itm) {
	
	object = itm;
	imgW = 800;
	imgH = 600;
	myurl = "popups/popup"+object+".html";


remote=window.open(myurl,object,"height="+imgH+",width="+imgW+",left="+(screen.width-2*imgW)/2+",top="+(screen.height-imgH+74)/2+",directories=0,fullscreen=0,menubar=0,resizable=0,status=0,titlebar=0,toolbar=0,scrollbars=1");
remote.focus();
}


function doPxp(itm) {
	
	object = itm;
	imgW = 800;
	imgH = 600;
	myurl = "../popup"+object+".html";


remote=window.open(myurl,object,"height="+imgH+",width="+imgW+",left="+(screen.width-2*imgW)/2+",top="+(screen.height-imgH+74)/2+",directories=0,fullscreen=0,menubar=0,resizable=0,status=0,titlebar=0,toolbar=0,scrollbars=1");
remote.focus();
}