<!--
function fullscreen(URL1, URL2){
   bName = navigator.appName; 
   bVer = parseInt(navigator.appVersion);
   bPlat = navigator.platform;
   
   if (URL2 == null) URL2 = URL1;
   
   if (bPlat == "Win32" && bName == "Microsoft Internet Explorer" && bVer > 3) {
      if (confirm) {
         window.open(URL1, 'bluenetbooks', 'type=fullWindow,fullscreen=yes');
      }
   }
   else if (bPlat == "Win16" && bName == "Microsoft Internet Explorer" && bVer > 3) {
      if (confirm) {
         window.open(URL1, 'bluenetbooks', 'type=fullWindow,fullscreen=yes');
      }
   }
   else if (confirm) {
         window.open(URL2, 'bluenetbooks', 'type=fullWindow,fullscreen=yes');
   }
}

function abreM(url,janela,scroll){
W = eval(screen.width)-10;
H = eval(screen.height)-54;

window.open(url,janela,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scroll+",resizable=no,copyhistory=no,width="+W+",height="+H+",top=0,left=0");
}
//-->
