function showPop1(sLoc, x, y) {
	var xVal = x || 450, yVal = y || 450;
	var xPos = (screen.width/2)-(xVal/2);
	var yPos = (screen.height/2)-(yVal/2);
	var pWin = null;
	pWin = window.open(sLoc,"pWin", "height=" + yVal + ",width=" + xVal + ",status=0,menubar=0,location=0,resizable=1,titlebar=0,scrollbars=1,top=0,left=0");
	pWin.resizeTo (xVal, yVal);
	pWin.moveTo (xPos, yPos);
}
