


function makewin (page, name, w, h, c) {
    xposition=0; yposition=0;

    if ((parseInt(navigator.appVersion) >= 4 ) && (c)){
        xposition = (screen.width - w) / 2;
        yposition = (screen.height - h) / 2;
    }

 
    args = "width=" + w + "," 
    + "height=" + h + "," 
    + "location=0," 
    + "menubar=0,"
    + "resizable=0,"
    + "scrollbars=auto,"
    + "status=0," 
    + "titlebar=0,"
    + "toolbar=0,"
    + "hotkeys=0,"
    + "screenx=" + xposition + "," 
    + "screeny=" + yposition + ","  
    + "left=" + xposition + ","     
    + "top=" + yposition;           
    window.open( page,name,args );

}