// JavaScript Document
  function controllaModulo() {
    var re=/ /g;
    var espressione = /^[_a-z0-9+-]+(\.[_a-z0-9+-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)+$/;
    var nome = document.supergioco.nome.value.replace(re, "");
	var email = document.supergioco.email.value.replace(re, "");
    var messaggio = document.supergioco.messaggio.value.replace(re, "");
	

    if (nome == "") { alert("Compilare il campo \"Nome\""); document.supergioco.nome.focus(); document.getElementById("nome").style.background = "#f9da6b"; return false; }
    else document.getElementById("nome").style.background = "#ffffff";
	
	if (email == "") { alert("Compilare il campo \"Email\""); document.supergioco.email.focus(); document.getElementById("email").style.background = "#f9da6b"; return false; }
    else document.getElementById("email").style.background = "#ffffff";
	
	if (email != "" && !espressione.test(email)) { alert("Indirizzo e-mail non corretto"); document.supergioco.email.focus(); document.getElementById("email").style.background = "#f9da6b"; return false; }
    else document.getElementById("email").style.background = "#ffffff";
   
    if (messaggio == "") { alert("Compilare il campo \"Messaggio\""); document.supergioco.messaggio.focus(); document.getElementById("messaggio").style.background = "#f9da6b"; return false; }
    else document.getElementById("messaggio").style.background = "#ffffff";
	
	 document.supergioco.submit();
  }

/*function check() {
var status = document.getElementById("privacy").checked;
alert(status);
}*/
