//    Call a PHP function which reads in the passed file and displays its contents on a new browser window
function docLoad(file,type)
{
    try{
        pageTracker._trackPageview('/'+type+'/'+file);
    }catch(err){}
      window.open('/includes/loadDocument.php?fn='+file+'&dt='+type,'','resizable=yes,status=0,menubar=0,scrollbars=1');
}