
 function controllocodice(){

   if (document.getElementById("codice").value.length <= 0) {
    alert("Inserisci il codice che hai trovato sul volume");
    document.getElementById("codice").focus()
    return false;
   }
    
    var codice = document.getElementById("codice").value

		document.frm_codice.action = "http://www.mymovies.it/cucinareinsieme/accedi/default.asp";
		document.frm_codice.submit();
  }

