function valida()
{
TheForm = document.form

if(TheForm.nome.value==""){
alert("O campo NOME é obrigatório!")
TheForm.nome.focus()
return false}

if(TheForm.cidade.value==""){
alert("O campo CIDADE é obrigatório!")
TheForm.cidade.focus()
return false}

if(TheForm.ddd.value==""){
alert("O campo DDD é obrigatório!")
TheForm.ddd.focus()
return false}

if(TheForm.seguimento.value==""){
alert("O campo SEGUIMENTO é obrigatório!")
TheForm.seguimento.focus()
return false}

if(TheForm.telefone.value==""){
alert("O campo TELEFONE é obrigatório!")
TheForm.telefone.focus()
return false}

if (TheForm.email.value.indexOf("@",0) == -1)	{
alert("O campo E-MAIL é obrigatório ou seu E-MAIL não é valido!");
TheForm.email.focus();
return false}

return true
}