function verifica(frm){

if (document.frm.nome.value < 1){
alert('Informe seu nome');
document.frm.nome.focus();
return false;
history.goBack(-1)
}

if (document.frm.e-mail.value < 1){
alert('Informe email de contato.');
document.frm.e-mail.focus();
return false;
history.goBack(-1)
}

if (document.frm.cep.value < 1){
alert('Informe seu Cep.');
document.frm.cep.focus();
return false;
history.goBack(-1)
}

}
