function valida(){

var objDepartamento = document.getElementById("UcContato1_cbDepartamento")
var objNome = document.getElementById("UcContato1_txtNome");
var objEmail = document.getElementById("UcContato1_txtEmail");
var objCidade = document.getElementById("UcContato1_txtCidade");
var objEstado = document.getElementById("UcContato1_txtEstado");
var objCidade = document.getElementById("UcContato1_txtCidade");
var objEstado = document.getElementById("UcContato1_txtEstado");
var objPais = document.getElementById("UcContato1_txtPais");
var objFone = document.getElementById("UcContato1_txtFone");
var objAssunto = document.getElementById("UcContato1_txtAssunto");
var objMensagem = document.getElementById("UcContato1_txtMensagem");

if(objDepartamento.value.length == 0){
objDepartamento.focus();
alert(msgDepartamento);
return false;
}

if(objNome.value.length == 0){
objNome.focus();
alert(msgNome);
return false;
}

if(verifica_mail(objEmail.value) != true){
objEmail.focus();
alert(msgEmail);
return false;
}

if(objCidade.value.length==0){
objCidade.focus();
alert(msgCidade);
return false;
}

if(objEstado.value.length==0){
objEstado.focus();
alert(msgEstado);
return false;
}

if(objPais.value.length==0){
objPais.focus();
alert(msgPais);
return false;
}

if(objFone.value.length==0){
objFone.focus();
alert(msgFone);
return false;
}

if(objAssunto.value.length == 0){
objAssunto.focus();
alert(msgAssunto);
return false;
}

if(objMensagem.value.length == 0){
objMensagem.focus();
alert(msgMensagem);
return false;
}

return true;
}
