function sInf(email)  {

		xpos = (screen.width - 469) / 2;
		ypos = (screen.height - 90) / 2;

		window.open('./email.asp?email=' + email, 'popup', 'width=469,height=90,top=' + ypos + ', left=' + xpos + ',screenX=' + xpos + ', screenY=' + ypos + ',resize=yes,resizable=yes,scrollbars=no');
		

	}

function submitMailing(nameform)  {

	var strEmail
	
	strEmail = nameform.email.value
	
	
	sInf(strEmail);
}



function verificaForm() {

	str = document.forms[0].email.value;
	reg = /\w+@[a-zA-Z0-9_-]+\.([a-zA-Z]{2,3})|\w+@[a-zA-Z0-9_-]+\.([a-zA-Z]{2,3}\.[a-zA-Z]{2,3})/;		

			if ( str.search(reg) == -1 ) {
				document.forms[0].email.focus();
				msg = "L'iscrizione non puņ essere effettuata. L'indirizzo e-mail immesso non č valido.\n";
				alert(msg);
				
				return false;

		}
		
		else {

			submitMailing(document.forms[0]);
		}

			
}