/* form nome prodotto */
function form_nome_prodotto(theForm){
	if (theForm.nomprod.value==""){
		document.getElementById('errore').innerHTML = "il campo Nome Prodotto è vuoto";
		theForm.nomprod.focus();
		return (false);
		}

return (true);

}



/* form codice a barre */
function form_codice_barre(theForm){
	if (theForm.codbar.value==""){
		document.getElementById('errore').innerHTML = "il campo Codice A Barre è vuoto";
		theForm.codbar.focus();
		return (false);
		}

return (true);

}



/* form codice prodotto */
function form_codice_prodotto(theForm){
	if (theForm.codprod.value==""){
		document.getElementById('errore').innerHTML = "il campo Codice Prodotto è vuoto";
		theForm.codprod.focus();
		return (false);
		}

return (true);

}




/* form casa produttrice */
function form_casa_produttrice(theForm){
	if (theForm.nmarca.value==""){
		document.getElementById('errore').innerHTML = "il campo Casa Produttrice è vuoto";
		theForm.nmarca.focus();
		return (false);
		}

return (true);

}
