function VerificaEmail(email) {
     if(email.indexOf('@') == "-1" ||
		email.lastIndexOf('.') < email.indexOf('@') ||
		email.indexOf('@') == "0" ||
		email.indexOf('.') == (email.indexOf('@'))+1 ||
		email.lastIndexOf('.') == (email.length)-1 ||
		email.length < 5)
		{
			return false
		} else {
            return true
        }
}

function ValidaContato() {
 document.f_contato.nome.style.background='url(image/input.gif) 0 0 no-repeat';
 document.f_contato.email.style.background='url(image/input.gif) 0 0 no-repeat';
 document.f_contato.telefone.style.background='url(image/input.gif) 0 0 no-repeat';
 document.f_contato.cidade.style.background='url(image/input.gif) 0 0 no-repeat';
 document.f_contato.estado.style.background='url(image/input.gif) 0 0 no-repeat';
 document.f_contato.comentarios.style.background='url(image/textarea.gif) 0 0 no-repeat';

  document.getElementById('input1').style.visibility='hidden';
  document.getElementById('input2').style.visibility='hidden';
  document.getElementById('input3').style.visibility='hidden';
  document.getElementById('input4').style.visibility='hidden';
  document.getElementById('input5').style.visibility='hidden';
  document.getElementById('input6').style.visibility='hidden';

 if(document.f_contato.nome.value.length == 0) {
  document.f_contato.nome.style.background='url(image/inputFocus.gif) 0 0 no-repeat';
  document.getElementById('input1').style.visibility='visible';
  document.f_contato.nome.focus();
  return false;
 }
 if(document.f_contato.email.value != "") {
  if(VerificaEmail(document.f_contato.email.value) == false) {
   document.f_contato.email.style.background='url(image/inputFocus.gif) 0 0 no-repeat';
   document.getElementById('input2').style.visibility='visible';
   document.f_contato.email.focus();
   return false;
  }
 } else {
  document.f_contato.email.style.background='url(image/inputFocus.gif) 0 0 no-repeat';
  document.getElementById('input2').style.visibility='visible';
  document.f_contato.email.focus();
  return false;
 }
 if(document.f_contato.telefone.value.length == 0) {
  document.f_contato.telefone.style.background='url(image/inputFocus.gif) 0 0 no-repeat';
  document.getElementById('input3').style.visibility='visible';
  document.f_contato.telefone.focus();
  return false;
 }
 if(document.f_contato.cidade.value.length == 0) {
  document.f_contato.cidade.style.background='url(image/inputFocus.gif) 0 0 no-repeat';
  document.getElementById('input4').style.visibility='visible';
  document.f_contato.cidade.focus();
  return false;
 }
 if(document.f_contato.estado.value.length == 0) {
  document.f_contato.estado.style.background='url(image/inputFocus.gif) 0 0 no-repeat';
  document.getElementById('input5').style.visibility='visible';
  document.f_contato.estado.focus();
  return false;
 }
 if(document.f_contato.comentarios.value.length == 0) {
  document.f_contato.comentarios.style.background='url(image/textareaFocus.gif) 0 0 no-repeat';
  document.getElementById('input6').style.visibility='visible';
  document.f_contato.comentarios.focus();
  return false;
 }
}
