<!--

isMac = (navigator.appVersion.indexOf("Mac") != -1);

function PopWin(theURL,winName,winFeatures){ 
	//alert(theURL);
	//winFeatures:toolbar=yes|no,location=yes|no,directories=yes|no,status=yes|no,menubar=yes|no,scrollbars=yes|no,resizable=yes|no,width=xx,height=yy
	var new_window = window.open(theURL,winName,winFeatures);
	new_window.focus();
	}
function handleFormSubmit(){
   var handleFormSubmit = true;
   //var WindowPtr = ( top.opener ) ? top.opener : window.open( "", "newWindow" );
	//WindowPtr.focus();
    window.opener.focus();
	self.close();
	return handleFormSubmit;
	}
function noLink(){return};	
//-->
