function ControllerRicerca(f) {
 var keyword=f.keyword;
 
 if (keyword.value=="") {
  alert("Devi inserire un codice prodotto!");
  return false;
 }
 
 if (isNaN(keyword.value) || parseInt(keyword.value)<0 || parseInt(keyword.value) > 99999999999)
 {
 alert('Nel campo Codice è possibile inserire solo numeri!');
 return false;
 }
 
 return true;
 }

