function PopUp(ficheiro){
   var browser=CheckBrowser4();
   if(browser == 0){
      self.location='browsers.html';
      return;
   }
   fullscreen=window.open(ficheiro,"tapete","toolbar=0,directories=0,status=0,resizable=0,location=0,scrollbars=1,copyhistory=0,width=500,height=450");
   self.fullscreen.focus();
}

function CheckBrowser4(){
   if(parseInt(navigator.appVersion) < 4 )
      return 0;
   else
      return 1;
}