<!--

var theWin = '';
function popUp(url){
	if (!theWin.closed && theWin.location) {
		theWin.location.href = url;
	}
	else {	
	 var int_windowLeft = (screen.width - 630) / 2;
  	var int_windowTop = (screen.height - 400) / 2;
	theWin=window.open(url,"popupWin","width=630,height=400,top=" + int_windowTop + ",left=" + int_windowLeft +",resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no");
		if (!theWin.opener) theWin.opener = self;
	}
	if (window.focus) {theWin.focus()}
	return false;
}
// -->