function Formulario() {

if (document.contato.nome.value=="") { 

document.contato.nome.value="Favor Preencher!"

document.contato.nome.focus();

return false;

}

if (document.contato.nome.value=="Favor Preencher!") { 

document.contato.nome.value="Favor Preencher!"

document.contato.nome.focus();

return false;

}

if (document.contato.email.value=="") { 

document.contato.email.value="Favor Preencher!"

document.contato.email.focus();

return false;

}

if (document.contato.email.value=="Favor Preencher!") { 

document.contato.email.value="Favor Preencher!"

document.contato.email.focus();

return false;

}


if (document.contato.estado.value=="0") { 

alert("Selecione o seu Estado!")

document.contato.estado.focus();

return false;


}

if (document.contato.assunto.value=="0") { 

alert("Selecione o tipo de assunto!")

document.contato.assunto.focus();

return false;


}


if (document.contato.mensagem.value=="") { 

document.contato.mensagem.value="Favor Preencher!"

document.contato.mensagem.focus();

return false;

}

if (document.contato.mensagem.value=="Favor Preencher!") { 

document.contato.mensagem.value="Favor Preencher!"

document.contato.mensagem.focus();

return false;


}}

