// Popup Window
<!--

function openPage (url, wwidth, wheight, title, scroll) {
	var netscape3 = (navigator.appName=='Netscape' && navigator.appVersion.indexOf('3.')!=-1)?true:false;
	var scrolling = (scroll)?',scrollbars=no':'';
	if (netscape3) wwidth = parseInt(wwidth) + 20;
	opts = 'width=' + wwidth + ',height=' + wheight + scrolling;
	popupWin = window.open(url, title, opts);
}

//-->


