

// <!--  (c) 1999 Warpages JavaScripting 


<!-- //Interrogate for platform 
        var bName = navigator.appName;
        var bVer=navigator.appVersion.charAt(0);
        if (navigator.userAgent.indexOf('Win')!=-1)
        {       bPlat="windows";     }
        else if (navigator.userAgent.indexOf('Mac')!=-1)
        {       bPlat="mac";       }
        else if (navigator.userAgent.indexOf('WebTV')!=-1)
        {       bPlat="webtv";     }
//-->
<!--// pop-up window 
function popup(site,width,height,which) {
        if (site != "") {
              
         if (bName.indexOf('Microsoft')!=-1) {
                    if (bVer>=4) {
                        if (bPlat=="mac")       {
                                height-=15;
                                width-=14;
                                        }                                                       
                    }  else {
                                height-=28;
                                width+=5;
                    }    
              } 
                var popupwindow=window.open(site, "newwindow"+which,"Toolbar=no,status=no,resizable=no,left=40,top=40,screenX=40,screenY=40,location=no,scrollbar=no,width="+width+",height="+height);
        }
}
//-->


