<!--
// SCRIPT DO MENU

function sobre(src,fundo) {
 if (!src.contains(event.fromElement)) {
  src.style.cursor = 'hand';
  src.bgColor = fundo;
 }
}
function fora(src,cor) {
 if (!src.contains(event.toElement)) {
  src.style.cursor = 'default';
  src.bgColor = cor;
 }
}
function TDlink(src) { 
 if(event.srcElement.tagName=='TD'){
  src.children.tags('A')[0].click();
 }
}
//  abre tela email
  function openWindow(mail){ 
      newWindow = window.open('form_mail.php?Endereco='+mail,'newWin','toolbar=no,location=no,status=no,scrollbars=no,width=460,height=390')           
  }					

//  abre tela questionario
  function open_enq(){ 
      newWindow = window.open('form_enq.html','newWin','toolbar=no,location=no,status=no,scrollbars=yes,width=480,height=450')           
  }					

-->