function openPressWindow(theURL, width, height) {
	width = 640;
	height = 480;
	theWindow = window.open(theURL, 'pressWindow', 'scrollbars=yes,resizable=yes,width=' + width + ',height=' + height);
	theWindow.focus();
}
