// JavaScript Document

function popUpCenteredWindow(c) {
	var	iMyWidth = (window.screen.width/2) - (150);
	var iMyHeight = (window.screen.height/2) - (200);
	var win2 = window.open(c,"Window2","height=360,width=450,resizable=no,left="+iMyWidth+",top="+iMyHeight+",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no,toolbar=no,location=no,menubar=no,status=no");
	win2.focus();
}  