

<!-- // Activate cloak

          function ChangeServer(urlrequest){
                var cookiestring = document.cookie;
                document.invisible.cookie_value.value=cookiestring;
                document.invisible.action=urlrequest;
                document.invisible.submit();
                return false;
           }

    	function OpenWindow( url, width, height, options ){
    		if ( ! width ) width = 600;
    		if ( ! height ) height = 400;
    		if ( ! options ) options = "scrollbars=yes,menubar=yes," + "toolbar=yes,location=yes,status=yes,resizable=yes";

    		var newWin = window.open( url, "new", "width=" + width + ",height=" + height + "," + options );
    	}

    	function OpenSAMWindow( url, width, height, options ){
    		if ( ! width ) width = 600;
    		if ( ! height ) height = 600;
    		if ( ! options ) options = "scrollbars=yes,menubar=yes," + "toolbar=yes,location=yes,status=yes,resizable=yes";

    		var newWin = window.open( url, "sam", "width=" + width + ",height=" + height + "," + options );
			if(newWin){
				newWin.opener=self;
				newWin.focus();
			}
     	}

    	function urlMenu(that){
      		theURL = that.options[that.selectedIndex].value;
      		if (theURL){
        		window.location = theURL;
      		}
    	}

        function urlMenuOpenWindow(that){
      		theURL = that.options[that.selectedIndex].value;
      		if (theURL){
                        window.open( theURL, "new", "width=600,height=400,scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes" );
      		}
        }


// Deactivate cloak -->
