//<script language="JavaScript" type="text/JavaScript">
<!--
function form_email_check(lang) 
{
	var error_sum = 0;
	
	if (MM_findObj('email').value=='' || !validEmail(MM_findObj('email').value)) 	{error_sum=1;}
	if (MM_findObj('name').value=='') 												{error_sum=1;}
	if (MM_findObj('surname').value=='') 											{error_sum=1;}
	//if (MM_findObj('phone').value=='') 											{error_sum=1;}
	if (MM_findObj('subject').value=='') 											{error_sum=1;}
	if (MM_findObj('message').value=='') 											{error_sum=1;}
	
	if (error_sum == 1) 
	{
		if (lang='it-it')
			{alert('Si prega di verificare la compilazione di tutti i campi obbligatori e la correttezza dell\'indirizzo email inserito.');}
		else if (lang='en-gb')
			{alert('Please verify that all the fields have been filled properly and that the email address provided is correct.');}
		else
			{alert('Please verify that all the fields have been filled properly and that the email address provided is correct.');}
		
		MM_findObj('actionf').value = '';
		return false;
	} 
	else 
	{
		
		MM_findObj('actionf').value = "sendemail";
		MM_findObj('form_email').action = document.location;
		return true;
	}
}


//-->
//<///script>