function upsdownwinpopup(myurl){
        if (navigator.appName == "Netscape"){
                if ((navigator.appVersion.substring(0, 3) == "3.0")
                                || (navigator.appVersion.substring(0, 3) == "4.0")) {
                        window1 = window.open(myurl, "item", "width=480,height=355,resizable=0,status=0,toolbar=0,menubar=0,scrollbars=0");
                        window1.focus();
                }
                else {  // Netscape 2
                        window.open(myurl, "item", "width=480,height=355,resizable=0,status=0,toolbar=0,menubar=0,scrollbars=0");
                }
        }
        else { // MSIE (?)
                window1 = window.open(myurl, "item", "width=480,height=355,resizable=0,status=0,toolbar=0,menubar=0,scrollbars=0");
        }
}




function processwinpopup(myurl){
        if (navigator.appName == "Netscape"){
                if ((navigator.appVersion.substring(0, 3) == "3.0")
                                || (navigator.appVersion.substring(0, 3) == "4.0")) {
                        window1 = window.open(myurl, "item", "width=480,height=450,resizable=1,status=0,toolbar=0,menubar=0,scrollbars=1");
                        window1.focus();
                }
                else {  // Netscape 2
                        window.open(myurl, "item", "width=480,height=450,resizable=1,status=0,toolbar=0,menubar=0,scrollbars=1");
                }
        }
        else { // MSIE (?)
                window1 = window.open(myurl, "item", "width=480,height=450,resizable=1,status=0,toolbar=0,menubar=0,scrollbars=1");
        }
}