/**
 * fc.js
 * by MV, Oct2004
 * Powered by HAPedit
 * Copyright(c)2004-2006 Sisarte-Serv Informatica Ltda
 *
 * Sisarte grants you a royalty free license to use or modify this
 * software provided that this copyright notice appears on all copies.
 * This software is provided "AS IS," without a warranty of any kind.
 */
function daffy()
   {
   z=window.open("fa_daffy.htm","TabMain","width=100,height=100"); //criei um objeto z
   x=100;
   y=100;
   while(x<=650)
      {
      z.resizeTo(x,100);
      x=x+2;
      }
   while(y<=x-200)
      {
      z.resizeTo(x,y);
      y=y+2;
      }
   }
 
 function ValidaEmail()
   {
   if(dados.email_txt.value==""||dados.email_txt.value.indexOf("@")<1||dados.email_txt.value.indexOf(".")<1)
      {
      dados.email_txt.value="";
      dados.email_txt.style.background="#FAF0E6";
      window.alert("O E-mail não foi preenchido ou está preenchido de forma incorreta!");
      dados.email_txt.focus();
      }
   else
      {
      dados.email_txt.style.background="white";
      }
   }

var alerta="Solicitamos que o conteúdo deste site não seja copiado.Por favor entre em contato se você precisar de algum material daqui."; 
function right(e) 
{
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
{
alert(alerta);
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
