function chkFormRegistrazione(oForm,msg){
	if (oForm.Email.value!=oForm.Email2.value) {
		alert(msg);
		return false;
	}
	return true;
}
