function checkInput(theForm) {
/*	if ((theForm.id_m.value=="nill")) {
		alert("Non hai selezionato la marca !");
		return false
	}

	if ((theForm.id_mo.value=="tbd")) {
		alert("Non hai selezionato il modello !");
		return false
	}

	if ((theForm.listino.value==0) && (theForm.listino.value.length<=0)) {
		alert("Non hai inserito il prezzo di listino !");
		theForm.listino.focus();
		return false
	}

	if ((theForm.sconto.value==0) && (theForm.sconto.value.length<=0)) {
		alert("Non hai inserito lo sconto !");
		theForm.sconto.focus();
		return false
	}

	if ((theForm.prezzo.value==0) && (theForm.prezzo.value.length<=0)) {
		alert("Non hai inserito il prezzo al pubblico !");
		theForm.prezzo.focus();
		return false
	}

	if (theForm.submit.value=="inserisci") {
		if ((theForm.img.value==0) && (theForm.img.value.length<=0)) {
			alert("Non hai selezionato l'immagine !");
			theForm.img.focus();
			return false
		}
	
	}
*/
}