function checa2_formulario(form){ 
if (form.f_nome.value == ""){ 
alert("Il campo Nome è obbligatorio"); 
form.f_nome.focus(); 
return (false); 
} 
if (form.f_telefono.value == ""){ 
alert("Il campo Telefono è obbligatorio"); 
form.f_telefono.focus(); 
return (false); 
} 
if (form.f_email.value.indexOf('@', 0) == -1){ 
alert("Inserire una email valida!"); 
form.f_email.focus(); 
return (false); 
}
return (true); 
} 
