// JavaScript Document
var coloreritorno = "";
var mail_corretta = "";

//cambia colori ai campi della registrazione
function over(val)
 { coloreritorno = val.style.color;
   val.style.color = '#ff6633'; }

function down(val)
 { val.style.color = coloreritorno;  }
 
function controlla_login()
 {   if (document.getElementById("username").value == "UserName") 
      { document.getElementById("show_error").innerHTML = "Inserire Login";
	    return 0;}
	 
	 if (document.getElementById("pass").value == "") 
      { document.getElementById("show_error").innerHTML = "Inserire Password";
	    return 0;}
     
    document.accedi.action="controlla_login.php";
    document.accedi.target="_self";
    document.accedi.submit(); 
 }

 function rendi_visibile(id)
 { 
   if (document.getElementById(id).style.display == 'none')
   		document.getElementById(id).style.display = "block";
		 else
		 	document.getElementById(id).style.display = 'none';
   		
}