function ValidaContato() //
{
	var MsgErro="", Cor="#FF6464";	
	
	document.getElementById("email").style.border="#EBEBEB"+" solid 1px;";
	document.getElementById("senha").style.border="#EBEBEB"+" solid 1px;";
	document.getElementById("csenha").style.border="#EBEBEB"+" solid 1px;";
	
	
	/* Verificando e-mail em branco e invalido */
	if (document.getElementById("email").value == "")
    {
		if (MsgErro!="")
        {
	        MsgErro += "\n"
        }
    	MsgErro="* E-mail não informado";
        document.getElementById("email").style.border=Cor+" solid 1px;";            
    }
	else
	{
	var re = /^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/;
    if (!re.test(document.getElementById("email").value))        
    {
    	if (MsgErro!="")
        {
 	       MsgErro += "\n"
        }
        MsgErro = "* Email inválido";
        document.getElementById("email").style.border=Cor+" solid 1px;";  
    }
	}
	
	/* Verificando campos em brancos */
    if (document.getElementById("senha").value == "")
    {
		if (MsgErro!="")
        {
	        MsgErro += "\n"
        }
    	MsgErro+="* Senha não informada";
        document.getElementById("senha").style.border=Cor+" solid 1px;";            
    }
    

    
	if (document.getElementById("csenha").value == "")
    {
		if (MsgErro!="")
        {
	        MsgErro += "\n"
        }
    	MsgErro+="* Confirmação de Senha não informada";
        document.getElementById("csenha").style.border=Cor+" solid 1px;";            
    }	
    else
	{
		if (document.getElementById("csenha").value !=  document.getElementById("senha").value)
		{
			if (MsgErro!="")
        	{
	        	MsgErro += "\n"
        	}
    		MsgErro+="* Senha não confere";
			document.getElementById("senha").style.border=Cor+" solid 1px;"; 
        	document.getElementById("csenha").style.border=Cor+" solid 1px;";            
    	}
	}
	
	
	/* Verificando se possui erros*/
    if (MsgErro!="")
    {
	    alert(MsgErro);
        return false
	}
    else
	{
        return true; // Carrega action
	}

}