function checkform(f) { if(f.tipologia.value == '') { alert('Insert the company type'); f.tipologia.focus(); return false; } if(f.azienda.value == '') { alert('Insert the company name'); f.azienda.focus(); return false; } if(f.epersonale.value == '') { alert('Insert your private email'); f.epersonale.focus(); return false; } if(f.epersonale.value.search(/^([\w\.\-])+@(([\w\-]{2,})+\.)+([a-z0-9]{2,})+$/i) == -1) { alert('Format private email not correct'); f.epersonale.focus(); return false; } if(f.telefono.value == '') { alert('Inserrt the telephone number'); f.telefono.focus(); return false; } if(f.eazienda.value == '') { alert('Insert company email'); f.eazienda.focus(); return false; } if(f.eazienda.value.search(/^([\w\.\-])+@(([\w\-]{2,})+\.)+([a-z0-9]{2,})+$/i) == -1) { alert('Format private company email not correct'); f.eazienda.focus(); return false; } if(f.riferimento.value == '') { alert('Insert the contact person'); f.riferimento.focus(); return false; } if(f.vericode.value != '') { alert('Insert the spam control code that apperas in the red box below'); f.vericode.focus(); return false; } return true; }