							function CVN_validateForm(theForm) {
								lEmail = document.forms[theForm].elements["EMAIL"];
								if(lEmail.value=="") {
									alert("Il campo email è obbligatorio!");
									return(false);
								}
								lName = document.forms[theForm].elements["NOME"];
								if(lName.value=="") {
									alert("Il campo nome è obbligatorio!");
									return(false);
								}
								controlloUrl(theForm);
								return document.MM_returnValue;
							}

							function controlloUrl(nomeForm)
							{
								var svf = document.getElementById(nomeForm);
								if (svf != null && (svf.url_dest.value == '' || svf.url_dest.value == 'null' )) { svf.url_dest.value = document.location; }
							}