// Opens a Web page in a new browser window
function popUp(popURL, popName, w, h, scroll, resize) {
	winprops = 'top=0,left=0,width=' + w + ',height=' + h + ',scrollbars=' + scroll + ',resizable=' + resize;
	win = window.open(popURL, popName, winprops);
	win.focus();
}



// For backwards compatibility only
function PopUp(popURL, popName, w, h, scroll) {
	popUp(popURL, popName, w, h, scroll, 'no');
}

