<!--

function winOpen(theURL,size_X,size_Y,w_NAME) {
	wx = size_X;
	wy = size_Y;
	subWin = window.open(theURL,w_NAME,"directories=no,location=no,menubar=no,toolbar=no,status=no,scrollbars=yes,toolbar=no,resizable=yes,screenX=0,screenY=0,width="+wx+",height="+wy);
	subWin.focus();
}

function ChangeSelection(form, selection,size_X,size_Y,w_NAME) {
   v = selection.selectedIndex;
   theURL = selection.options[v].value;
   if(theURL){winOpen(theURL,size_X,size_Y,w_NAME);}
 }

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');
		}
	}
}

//-->
