var CSUBWindow;
var outsideWindow;

    function OpenWindow ( url, width, height, options, name )
    {      
	   if (url.indexOf("http://www.csub.edu") > -1){
	    //alert ("This script: detected csub URL");
        if (window.opener != null && !(window.opener.closed)) 
        {
			// alert ("This script: window.opener is NOT null and window.opener is still open");
            window.opener.location = url;
            window.opener.focus();
        
        } else if (typeof(CSUBWindow) != "undefined" && CSUBWindow != null && !(CSUBWindow.closed)) {
			// alert ("This script: CSUBWindow is NOT null and CSUBWindow.closed is false");
            CSUBWindow.location = url;
			CSUBWindow.focus();
        
        } else {
		    // alert ("This script: CSUBWindow is null and window.opener is null");
            if (!width) width = 714;
            if (!height) height = 536;
            if (!options) options = "scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes";
			if (!name) name = "CSUBWindow";
            CSUBWindow = window.open( url, name, "width="+width+",height="+height+","+options );
            CSUBWindow.focus();
        }
	 } else {
	 // alert ("This script: NOT detected CSUB URL");
	 		if (!width) width = 714;
            if (!height) height = 536;
            if (!options) options = "scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes";
			if (!name) name = "OutsideWindow";
            outsideWindow = window.open( url, name, "width="+width+",height="+height+","+options );
            outsideWindow.focus();
	 }
		
    }