<!--
function blockError(){return true;}
window.onerror = blockError;
// -->

<!-- funções de abertura, menu e imagens --->
function maximiza() {
    var sw = screen.availWidth;
    var sh = screen.availHeight;
    self.resizeTo(sw,sh);
    self.moveTo(0,0);
  }
  
  function opAdd(url,wid,hei) {
    if ( navigator.appName == "Netscape" ) {
      window.open(url, 'new', 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+wid+',height='+hei+'');
    }
    else {
     window.open(url, 'new', 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+wid+',height='+hei+'');
    }
  }

function opAddy(url,wid,hei) {
    if ( navigator.appName == "Netscape" ) {
      window.open(url, 'newy', 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+wid+',height='+hei+'');
    }
    else {
     window.open(url, 'newy', 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+wid+',height='+hei+'');
    }
  }

function opAddr(url,name,wid,hei) {
    if ( navigator.appName == "Netscape" ) {
      window.open(url, name, 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+wid+',height='+hei+'');
    }
    else {
     window.open(url, name, 'left=0, top=0, maximized=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+wid+',height='+hei+'');
    }
  }
<!-- final das funções de abertura, menu e imagens --->0


<!--------------STATUS BAR SCROLL BANNER VERSÃO 02 --------->
  message     = "HIDRAUCAM - Plataformas Hidráulicas!^" +
                "HIDRAUCAM - Plataformas Hidráulicas!^" +
                "HIDRAUCAM - Plataformas Hidráulicas!^" +
                "HIDRAUCAM - Satisfação, Segurança e Tranquilidade!^" +
                "HIDRAUCAM AGRADECE SUA VISITA... VOLTE SEMPRE E DIVULGUE NOSSO SITE...^"
  scrollSpeed = 25
  lineDelay   = 1500

  txt         = ""
  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }
  scrollText(0)
<!--------------/STATUS BAR SCROLL BANNER VERSÃO 02 --------->

// CODE FOR THE DATE DISPLAY

function data( ){
m= new Array(12);
m[0]="Janeiro";m[1]="Fevereiro";m[2]="Março";m[3]="Abril";m[4]="Maio";m[5]="Junho";
m[6]="Julho";m[7]="Agosto";m[8]="Setembro";m[9]="Outubro";m[10]="Novembro";m[11]="Dezembro";
now = new Date( );
month=now.getMonth( );
day=now.getDate( );
switch (day){
case 1:
sup="";
break;
case 21:
sup="";
break;
case 31:
sup="";
break;
case 2:
sup="";
break;
case 22:
sup="";
break;
case 3:
sup="";
break;
case 23:
sup="";
break;
default:
sup="";
}
year=now.getFullYear( );
document.write("<DIV ALIGN='LEFT'><FONT SIZE=2 COLOR='navy'>"+day+"." +m[month]+"."+year+"</FONT></DIV>");
}

//  End -->
