function emailVerificar(strEmail)
{
    var objExclude = /[^@\-\.\w]|^[_@\.\-]|[\._\-]{2}|[@\.]{2}|(@)[^@]*\1/;
    var objCheck = /@[\w\-]+\./;
    var objCheckEnd = /\.[a-zA-Z]{2,3}$/;
    
    if(((strEmail.search(objExclude) != -1) || (strEmail.search(objCheck)) == -1) || (strEmail.search(objCheckEnd) == -1))
        return false;
    else
        return true;
}

function verificarEstado()
{
	if(document.frmContato.chkMoraFora.checked == true)
	{
		document.frmContato.cboEstado.value = "";
		document.frmContato.cboEstado.disabled = true;
	}
	else
	{
		document.frmContato.cboEstado.disabled = false;
	}
}

function preenchimentoVerificar()
{
    if(document.frmContato.txtNome.value.length > 0)
    {
        if(document.frmContato.txtEmail.value.length > 0)
        {
            if(emailVerificar(document.frmContato.txtEmail.value))
            {
	            if((document.frmContato.cboEstado.value == "") && (document.frmContato.chkMoraFora.checked == false))
	            {
		            alert("Escolha o Estado ou a opção Mora fora do Brasil.");
		            document.frmContato.cboEstado.focus();
		            return false;
	            }
	            else
                    document.frmContato.submit();
            }
            else
            {
                alert("Preencha corretamente seu E-mail.");
                document.frmContato.txtEmail.focus();
                return false;
            }
        }
        else
        {
            alert("Preencha corretamente seu E-mail.");
            document.frmContato.txtEmail.focus();
            return false;
        }
    }
    else
    {
        alert("Preencha corretamente seu Nome.");
        document.frmContato.txtNome.focus();
        return false;
    }
}