<!--
function contatti_Validation(mioForm)
{
if (modulo_contatti.nome.value == "your name" || modulo_contatti.nome.value == "")
{
  alert("Insert your name, please.");
return (false)
}
if (modulo_contatti.cognome.value == "your surname" || modulo_contatti.cognome.value == "")
{
  alert("Insert your surname, please.");
return (false)
}
if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(modulo_contatti.email.value)) || modulo_contatti.email.value == "your e-mail address")
{
  alert("Insert your e-mail address in the correct way.");
return (false)
}
} //end of function.
//-->


<!--
function contatti_Reset(mioForm)
{
	return window.confirm('Restore the form with the initial values?\nAll the data inserted will be deleted!');
} //end of function.
//-->

<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->