// JavaScript Document
function contatti_ok() {
	if (document.form1.nome_cont.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo referente.')
	return false
	}
	else if (document.form1.tel_cont.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo telefono.')
	return false
	}
	else if (document.form1.mail_cont.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo email.')
	return false
	}
	var pos = 0;
	var c=0;
	var i = document.form1.mail_cont.value;
	pos = i.indexOf("@");
	if (pos  =='-1') {
	alert('ATTENZIONE !!! - La mail inserita non e\' corretta.')
	return false
	}
}


function register_ok() {
	if (document.form_register.mail_user.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo mail.')
	return false
	}
	if (document.form_register.pwd_user.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo password.')
	return false
	}
	var num = document.form_register.pwd_user.value.length;
	if(num< 6) {
	alert('ATTENZIONE !!! - Il campo password deve essere di almeno 6 caratteri.')
	return false
	}
	else if (document.form_register.pwd_user.value != document.form_register.pwd_user2.value) {
	alert('ATTENZIONE !!! - Le due password non sono uguali.')
	return false
	}
	else if (document.form_register.nome_user.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo nome.')
	return false
	}	
	else if (document.form_register.cognome_user.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo cognome.')
	return false
	}	
	else if (!document.form_register.privacy.checked) {
	alert('ATTENZIONE !!! - E necessario accettare l\'informativa sulla privacy.')
	return false
	}
}

function confirm_codice() {
	if (document.form_conferma.random_user.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo codice.')
	return false
	}	
}

function pwd_ok() {
	if (document.form_pwd.mail_user.value == 0) {
	alert('ATTENZIONE !!! - E necessario compilare il campo mail.')
	return false
	}
	
}

