function change (campo,nuova){	//document.write ('campo: ' + campo)	//document.write ('nuova: ' + nuova)	if (document.images){		document[campo].src = eval (nuova+".src")	}}function check_newsletter_home() {	if (document.modulo_newsletter_home.email.value == '') {		alert('Il campo INDIRIZZO E-MAIL \n non puņ essere vuoto.');		document.modulo_newsletter_home.email.value='';		document.modulo_newsletter_home.email.focus();		document.modulo_newsletter_home.email.select();		return false; }		var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;		if (!email_reg_exp.test(document.modulo_newsletter_home.email.value)) {		   alert("Controllare l\'indizzo E-mail.\nQuello inserito non č corretto");		   document.modulo_newsletter_home.email.select();		   return false;		}	};function check_newsletter() {	if (document.modulo_newsletter.email.value == '') {		alert('Il campo INDIRIZZO E-MAIL \n non puņ essere vuoto.');		document.modulo_newsletter.email.value='';		document.modulo_newsletter.email.focus();		document.modulo_newsletter.email.select();		return false; }		var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;		if (!email_reg_exp.test(document.modulo_newsletter.email.value)) {		   alert("Controllare l\'indizzo E-mail.\nQuello inserito non č corretto");		   document.modulo_newsletter.email.select();		   return false;		}	};function check_utente() {					if (document.modulo_utente.username.value == '') {		alert('Il campo USERNAME \n non puņ essere vuoto.');		document.modulo_utente.username.value='';		document.modulo_utente.username.focus();		document.modulo_utente.username.select();		return false; }	if (document.modulo_utente.password.value == '') {		alert('Il campo PASSWORD \n non puņ essere vuoto.');		document.modulo_utente.password.value='';		document.modulo_utente.password.focus();		document.modulo_utente.password.select();		return false; }};function checkSubmit_utente1() {					if (document.modulo_utente1.username.value == '') {		alert('Il campo USERNAME \n non puņ essere vuoto.');		document.modulo_utente1.username.value='';		document.modulo_utente1.username.focus();		document.modulo_utente1.username.select();		return false; }	if (document.modulo_utente1.password.value == '') {		alert('Il campo PASSWORD \n non puņ essere vuoto.');		document.modulo_utente1.password.value='';		document.modulo_utente1.password.focus();		document.modulo_utente1.password.select();		return false; }};function check_newsletter1() {	if (	document.modulo_newsletter_completa.professione[document.modulo_newsletter_completa.professione.selectedIndex].value == '') {		alert('Il campo PROFESSIONE \n non puņ essere vuoto.');		return false; }			if (document.modulo_newsletter_completa.nome.value == '') {		alert('Il campo INDIRIZZO NOME\n non puņ essere vuoto.');		document.modulo_newsletter_completa.nome.value='';		document.modulo_newsletter_completa.nome.focus();		document.modulo_newsletter_completa.nome.select();		return false; }		if (document.modulo_newsletter_completa.cognome.value == '') {		alert('Il campo INDIRIZZO COGNOME\n non puņ essere vuoto.');		document.modulo_newsletter_completa.cognome.value='';		document.modulo_newsletter_completa.cognome.focus();		document.modulo_newsletter_completa.cognome.select();		return false; }				if (document.modulo_newsletter_completa.email.value == '') {		alert('Il campo INDIRIZZO E-MAIL \n non puņ essere vuoto.');		document.modulo_newsletter_completa.email.value='';		document.modulo_newsletter_completa.email.focus();		document.modulo_newsletter_completa.email.select();		return false; }		var email_reg_exp = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-]{2,})+\.)+([a-zA-Z0-9]{2,})+$/;		if (!email_reg_exp.test(document.modulo_newsletter_completa.email.value)) {		   alert("Controllare l\'indizzo E-mail.\nQuello inserito non č corretto");		   document.modulo_newsletter_completa.email.select();		   return false;		}	if (!(document.modulo_newsletter_completa.accetto.checked)) {		alert('Senza il consenso alla legge della privacy \n non č possibile procedere all\'iscrizione alla Newsletter');				return false; }		};