// Java Sripts for use by all pages
// Author: Roy Rodriguez  Updated: 11/25/06
// No code may be used elsewhere without permission
//

function newWindow(){
royspopup=window.open('underconstruction.htm','royspopup',
'width=900,height=450,left=20,top=20,resizable=no,status=no');
}

function newWindowINEH(){
royspopup=window.open('required.html','royspopup',
'width=600,height=390,left=200,top=200,resizable=no,status=no');
}

function CloseThis(){
	window.close()
}

var newWindow;

function subWindow() {
    if (arguments.length < 1) {
        alert("function subWindow called with " + arguments.length +
              " arguments, but it expects at least 1 arguments.");
        return null;
    }
    var heightval = arguments[1] != null ? arguments[1] : 480;
    var widthval = arguments[2] != null ? arguments[2] : 640;
    var filename = arguments[3] != null ? arguments[3] : "";
    var dimensions = "directory=1,height="+heightval+",width="+widthval+
                     ",left=130,top=180,resizable=1,statusbar=0,hotkeys=0,menubar=0,scrollbars=0,status=0,toolbar=0";
    var newWindow = window.open(filename,arguments[0],dimensions);
	{newWindow.focus()}
 
    if (!filename) {
        newWindow.document.write("TheEsotericBloom.com")
        newWindow.document.write("<center><font size=4 color='red'>Loading, please wait...</font></center>")
        newWindow.document.bgColor="lightyellow"  
   }
    return;
}
