function popWindow(url,w,h)
{
	var popupWindow = window.open(url,'popupWindow','width=' + w + ',height=' + h);
	popupWindow.moveTo(screen.width/2-w/2,screen.height/2-h/2);
	popupWindow.focus();
}