<!--
function openPopup(popURL){
	if(typeof(popUpWin) != "object"){
		popupWin = 
		window.open(popURL,'pop','location=no,status=no,height=400,width=600,menubar=no,scrollbars=yes,resizable=no,top=50,left=50');
	} else {
		if(!popupWin.closed){
			popupWin.location.href = popURL;
		} else {
			popupWin =	
			window.open(popURL,'pop','location=no,status=no,height=400,width=600,menubar=no,scrollbars=yes,resizable=no,top=50,left=50');
		}
	}
	popupWin.focus();
}
//-->
