

//-- This function opens the new, empty window named floater.
function openWindow(url) {
    wpix=445
    hpix=420
    xpix=35
    ypix=35
    features='toolbar=no,location=no,directories=no,menubar=no,'
    features+='scrollbars=1,resizable=no,width='
    features+=wpix
    features+=',height='
    features+=hpix
 
    if (navigator.appName.indexOf("Microsoft")>=0) {
        xpix=+20
        ypix=+20
 features+=',left='
 features+=xpix
 features+=',top='
 features+=ypix
    }else{
//-- Netscape
 features+=',screenX='
 features+=xpix
 features+=',screenY='
 features+=ypix
    }
    floater=window.open(url,"Results",features) 
    floater.focus()    
}


// stop hiding -->

