

//-- This function opens the new, empty window named floater2.
function openWindow(url) {
    wpix=320	
    hpix=220
    xpix=35
    ypix=35
    features='toolbar=no,location=no,directories=no,menubar=no,'
    features+='scrollbars=no,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
    }
    floater2=window.open(url,"Results",features) 
    floater2.focus()    
}


// stop hiding -->
