/* ORCC Scripts
   Last Updated 10/7/03 */


function popup(URL, width, height) {
	// Generic Popup Window Script (no resize)
	popupWin = window.open(URL, 'popupWin', 'width=' + width + ',height=' + height + ',menubar=0,scrollbars=0,resizable=0');
	popupWin.focus();
}

function popupResize(URL, width, height) {
	// Generic Popup Window Script (no resize)
	popupWin = window.open(URL, 'popupWin', 'width=' + width + ',height=' + height + ',menubar=no,scrollbars=yes,resizable=yes');
	popupWin.focus();
}
