function controlla_genitore(){
var ok = 1;
	if(document.getElementById){
		if(document.getElementById("nome").value == ""){
			alert("Campo nome obbligatorio");
			document.getElementById("nome").focus();
			ok = 0;
		} else if(document.getElementById("cognome").value == ""){
			alert("Campo cognome obbligatorio");
			document.getElementById("cognome").focus();
			ok = 0;
		} else if(document.getElementById("usr").value == ""){
			alert("Campo username obbligatorio");
			document.getElementById("usr").focus();
			ok = 0;
		} else if(document.getElementById("sesso").value == ""){
			alert("Campo sesso obbligatorio");
			document.getElementById("sesso").focus();
			ok = 0;
		} else if(document.getElementById("psw").value == ""){
			alert("Campo password obbligatorio");
			document.getElementById("psw").focus();
			ok = 0;
		} else if(document.getElementById("cf_f").value == ""){
			alert("Campo codice fiscale obbligatorio");
			document.getElementById("cf").focus();
			ok = 0;
		} else if(document.getElementById("nome_f").value == ""){
			alert("Campo classe obbligatorio");
			document.getElementById("classe_n").focus();
			ok = 0;
		} else if(document.getElementById("cognome_f").value == ""){
			alert("Campo sezione obbligatorio");
			document.getElementById("sezione").focus();
			ok = 0;
		} 
		
		if(ok)
		return true;
		else return false;
	}
}
