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