/*  */

//jump function
function jump(where) { 
    var thePage = "/html/225.htm?" + where; 
    openNewWindow(thePage,"temp",655,215,0,0,"none"); 
}

function jump2(where) {
    openNewWindow(where,"outside",650,550,0,0,"full");
}

//open window function
function openNewWindow(page,name,width,height,top,left,propSet) {
    var windowProps = new Array (8);
    windowProps[0] = "resizable=yes";
    windowProps[1] = "scrollbars=yes";
    windowProps[2] = "titlebar=yes";
    windowProps[3] = "toolbar=yes";
    windowProps[4] = "menubar=yes";
    windowProps[5] = "location=yes";
    windowProps[6] = "status=yes";
    windowProps[7] = "directories=yes";
    
    var myProps = "";
    var mySize = "";
    
    if (propSet == 'one') {
         myProps = ',' + windowProps[0] + ',' + windowProps[1];
    } else if (propSet == "full") {
        myProps = ',' + windowProps.join(",");
    } else if (propSet == "print") {
        myProps = ',' + "scrollbars=yes";
    } else {
        myProps = "";
    }    
    
    if ((width > 50)||(height > 50)) {
        var mySize = 'width=' + width + ',' + 'height=' + height + ',' + 'top=' + top + ',' + 'left=' + left;
    }
    
    var myString = mySize + myProps;
    window.open(page,name,myString);
    
}

