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