<!--
function openPopUp(pageURL) {
	var newWindow = window.open(pageURL,'Popup','scrollbars=1,resizable=1,height=350,width=500');
	if (newWindow.opener == null) {newWindow.opener = window;}
	else {
		browserVer = parseInt(navigator.appVersion);
		if(browserVer >3) {newWindow.focus();}
	}
}
//-->