function openWindow(pg, w, h) {
		newWindow = window.open(pg,"newWindow", "width=" + w + ", height=" + h + ", resizable, scrollbars");
		newWindow.focus();
		newWindow.moveTo((screen.width - w) / 2, (screen.height - h) / 2);
}
