
// script to load either pdf or html file based on browser

function whichbrowser(linkname) {

    if (navigator.appName=="Netscape") 
       
        window.location="pdfs/"+linkname+".pdf";

    else

      window.location=linkname+".htm"; 
     }

