function centeredPopUp(pPage, h ,w) 
{
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - (225 + 10); 
	iMyHeight = (window.screen.height/2) - (60 + 30);
	
	var win2 = window.open
(pPage,"Window2","height=" + h + ", width=" + w + ", left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ", scrollbars=no, status=no, resizable=no");
	win2.focus();
}
function centeredPopUp2(pPage, h ,w) 
{
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - (225 + 10); 
	iMyHeight = (window.screen.height/2) - (60 + 30);
	
	var win2 = window.open
(pPage,"Window3","height=" + h + ", width=" + w + ", left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ", scrollbars=no, status=no, resizable=no");
	win2.focus();
}