// popup

var xPos = (screen.width/2)-(450/2);
var yPos = (screen.height/2)-(450/2);
var pWin = null;

//open pop wait screen
function showPop1(sLoc) {
	pWin = window.open(sLoc,"pWin", "height=2,width=2,status=0,menubar=0,location=0,resizable=1,titlebar=0,scrollbars=1,top=0,left=0");
	pWin.resizeTo (500, 500);
	pWin.moveTo (xPos, yPos);
}
