function submitIt(mio_modulo,lingua) {

			// Controllo se esistono il Cognome o la Ragione Sociale
			if (mio_modulo.nome.value == "") {
				if (lingua=='it')
					alert("Devi Specificare il Nome")
				else
					if (lingua=='en')
						alert("You must specify the Name")
				else
					if (lingua=='de')
						alert("Sie m&uuml;ssen den Namen")
				mio_modulo.nome.focus()
				return false
			}
			if (mio_modulo.cognome.value == "") {
				if (lingua=='it')
					alert("Devi Specificare il Cognome")
				else
					if (lingua=='en')
						alert("You must specify the Last Name")
				else
					if (lingua=='de')
						alert("Sie m&uuml;ssen den Nachnamen")
				mio_modulo.cognome.focus()
				return false
			}
			if (mio_modulo.email.value == "") {
				if (lingua=='it')
					alert("Devi Specificare l' Email")
				else
					if (lingua=='en')
						alert("You must specify the Email")
				else
					if (lingua=='de')
						alert("Sie m&uuml;ssen die Email")
				mio_modulo.email.focus()
				return false
			}
			if (mio_modulo.importo.value == "") {
				if (lingua=='it')
					alert("Devi Specificare l' Import")
				else
					if (lingua=='en')
						alert("You must specify the Amount")
				else
					if (lingua=='de')
						alert("Sie m&uuml;ssen den Preis")
				mio_modulo.importo.focus()
				return false
			}
			if (mio_modulo.causale.value == "") {
				if (lingua=='it')
					alert("Devi Specificare la Causale")
				else
					if (lingua=='en')
						alert("You must specify the Cause")
				else
					if (lingua=='de')
						alert("Sie m&uuml;ssen die Ursache")
				mio_modulo.causale.focus()
				return false
			}
			if (!(mio_modulo.privacy.checked)) {
				if (lingua=='it')
					alert("Devi Specificare il consenso alla privacy")
				else
					if (lingua=='en')
						alert("You must mark the privacy check")
				else
					if (lingua=='de')
						alert("Sie m&uuml;ssen den Namen")
				mio_modulo.privacy.focus()
				return false
			}
	// If we made it to here, everything's valid, so return true
			return true
}
