/**
 * 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 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="Sis Arte solicita 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;
