	function check_email(v)
	{
		ok = "1234567890qwertyuiop[]asdfghjklzxcvbnm.@-_QWERTYUIOPASDFGHJKLZXCVBNM";
	
		for(i=0; i < v.length ;i++)
		{
			if(ok.indexOf(v.charAt(i))<0)
			{ 
				return (false);
			}	
		} 
		if (document.images)
		{
			re = /(@.*@)|(\.\.)|(^\.)|(^@)|(@$)|(\.$)|(@\.)/;
			re_two = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
			if (!v.match(re) && v.match(re_two))
			{
				return (true);		
			} 
	
		}
	}
	
	function iscriviNl(){
		check = true;
		if (document.getElementById("MailBox").value == "")
		{
			alert("Inserire un indirizzo E-Mail");
			check = false;
			document.getElementById("MailBox").focus();
			return;
		}
		
		if(document.getElementById("MailBox").value != "")
		{
	    	if(!check_email(document.getElementById("MailBox").value))
	    	{
	    		alert("Inserire un indirizzo E-Mail valido");
	    		check = false;	
	    		document.getElementById("MailBox").focus();
	    		return;			
	    	}	
		}
		if (check){
			document.FormNL.action='/newsletter/ric_iscrizione.asp?s=14';
			document.FormNL.submit();		
		}
	}
	
	
	function cancellaNl(){
		check = true;
		if (document.getElementById("MailBox").value == "")
		{
			alert("Inserire un indirizzo E-Mail");
			check = false;
			document.getElementById("MailBox").focus();
			return;
		}
		
		if(document.getElementById("MailBox").value != "")
		{
	    	if(!check_email(document.getElementById("MailBox").value))
	    	{
	    		alert("Inserire un indirizzo E-Mail valido");
	    		check = false;	
	    		document.getElementById("MailBox").focus();
	    		return;			
	    	}	
		}
		if (check){
			if (confirm('Sei sicuro di volerti cancellare dalla Newsletter?')){
				document.FormNL.action='/newsletter/cancellazione.asp?s=14';
				document.FormNL.submit();					
			}
		}		
	}
