<!--function Wopen(theURL,size_X,size_Y,w_NAME) {wx = size_X;wy = size_Y;x = (screen.width  - wx) / 2;y = (screen.height - wy) / 2;subwin = window.open(theURL,w_NAME,"directories=no,location=no,menubar=no,toolbar=no,status=no,scrollbars=yes,toolbar=no,resizable=yes,"+"left="+x+",top="+y+",width="+wx+",height="+wy);}function returnWin(theURL){	if ((navigator.userAgent.indexOf("Mac") > -1)){		if (window.opener){			opener.location.href=theURL;			window.opener.focus();		} else {			window.open(theURL,'Main','directories=yes,location=yes,menubar=yes,toolbar=yes,status=yes,scrollbars=yes,toolbar=yes,resizable=yes');		}	} else{		if (!window.opener.closed) {			opener.location.href=theURL;			window.opener.focus();		}else{ 		window.open(theURL,'Main','directories=yes,location=yes,menubar=yes,toolbar=yes,status=yes,scrollbars=yes,toolbar=yes,resizable=yes');		}	}}//-->
