/* author: Allysson JM */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 22/04/02 */
function validez(){
if (document.form1.nome.value.length < 1)
{
window.alert("Por favor insira o seu nome");
return false;
}
if (document.form1.cpf.value.length < 10)
{
window.alert("Por favor insira o seu cpf");
return false;
}
if (document.form1.email.value.length < 5 & document.form1.tel.value.length < 6)
{
window.alert("Por favor insira o seu e-mail ou telefone para contato");
return false;
}
if (document.form1.anuncio.value.length < 10)
{
window.alert("Por favor preencha o seu anuncio");
return false;
}
return true;
}
