// JavaScript Document


function convalida() {
if (document.getElementById("matricolant").value == "" ) {
alert("Scrivi il numero di matricola del tuo elettrodomestico, grazie");
document.getElementById("matricolant").focus();
return false;
}	
if (document.getElementById("modellont").value == "" ) {
alert("Scrivi il modello del tuo elettrodomestico, grazie");
document.getElementById("modellont").focus();
return false;
}	
if (document.getElementById("codcommnt").value == "" ) {
alert("Scrivi il codice commerciale del tuo elettrodomestico, grazie");
document.getElementById("codcommnt").focus();
return false;
}	

if (document.getElementById("telef").value == "" ) {
alert("Non hai lasciato nessun recapito telefonico dove poterti richiamare");
document.getElementById("telef").focus();
return false;
}	

if (document.getElementById("ragione").value == "" ) {
alert("Scrivi il tuo nome e cognome o la tua ragione sociale sei hai partita IVA, grazie");
document.getElementById("ragione").focus();
return false;
}	


if (document.getElementById("email").value != "") {
var email = document.getElementById("email").value;
if (email.indexOf('@', 0) == -1  || email.indexOf('.', 0) == -1 || email.length < 6){ 
alert("L'e-mail inserita non è valida. Ricontrollala, grazie.");
document.getElementById("email").focus();
return false;
}
}
/* privacy */
if (document.getElementById("privacy").checked==false) {
	alert("Devi dare il tuo consenso al trattamento dei dati personali per effettuare la registrazione");
	return false;
}


}
