// Open new custom window in the center

function openWindow(url,w,h) 
{
	var leftVal=(screen.width / 2) - (550 / 2);
	var topVal = (screen.height / 2) - (500 / 2);
	newWindow = window.open(url,"mySite","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width="+w+",height="+h+",left="+leftVal+",top="+topVal+"")
}