// Ago 20 15:12 2009

// Copyright (c) 2005-2007 Davison do Canto Duarte (http://www.wbibrasil.com.br)
// 
// For details, see the www.wbibrasil.com.br web site: http://www.wbibrasil.com.br/ 

function is_email(email)
    {
      er = /^[a-zA-Z0-9][a-zA-Z0-9\._-]+@([a-zA-Z0-9\._-]+\.)[a-zA-Z-0-9]{2}/;
      
      if(er.exec(email))
        {
          return true;
        } else {
          return false;
        }
    }
	
function valida(){
	
	if(document.getElementById('nome_contato').value == "")
	{ 
		document.getElementById('nome_contato').style.borderColor = "red";
		alert('O campo nome \u00e9 de preenchimento obrigat\u00f3rio.');
		document.getElementById('nome_contato').focus();
		
		return false;
	}
	
	var mail = document.getElementById('email').value;
		
		if(!is_email(mail))
		{	
			document.getElementById('email').style.borderColor = "red";
			alert('O campo email \u00e9 de preenchimento obrigat\u00f3rio. \n ex: seu-email@provedor.com.br');
			document.getElementById('email').focus();
			
			return false;
		}
		
	if(document.getElementById('telefone_contato').value == "")
	{ 
		document.getElementById('telefone_contato').style.borderColor = "red";
		alert('O campo telefone \u00e9 de preenchimento obrigat\u00f3rio.');
		document.getElementById('telefone_contato').focus();
		
		return false;
	}
	
		if(document.getElementById('empresa').value == "")
	{ 
		document.getElementById('empresa').style.borderColor = "red";
		alert('O campo empresa \u00e9 de preenchimento obrigat\u00f3rio.');
		document.getElementById('empresa').focus();
		
		return false;
	}
	
	
	
  return true; //SE PASSAR POR TUDO ENVIA
  
 }