// JavaScript Document
// RICHIESTA SUPPORTO
function checksubmitform() {
	//alert('test 2')
	if (document.register.nl.value == 0) {
	alert('ATTENZIONE !!! - E necessario specificare un indirizzo email.')
	return false
	}
	if (document.register.nl2.value == 0) {
	alert('ATTENZIONE !!! - E necessario reinserire la tua email anche nel secondo campo.')
	return false
	}
	if (document.register.nl.value != document.register.nl2.value) {
	alert('ATTENZIONE !!! - I due campi email non coincidono.')
	return false
	}
	var pos = 0;
	var c=0;
	var i = document.register.nl.value;
	pos = i.indexOf("@");
	if (pos  =='-1') {
	alert('ATTENZIONE !!! - La mail inserita non e\' corretta.')
	return false
	}
	
	else if (!document.register.privacy.checked) {
	alert('ATTENZIONE !!! - E necessario accettare l\'informativa sulla privacy.')
	return false
	}
}



function checksubmitform2() {
	//alert('test 2')
	if (document.register2.nome.value == 0) {
	alert('ATTENZIONE !!! - E necessario inserire il nome.')
	return false
	}
	if (document.register2.cognome.value == 0) {
	alert('ATTENZIONE !!! - E necessario inserire il cognome.')
	return false
	}
	if (document.register2.telefono.value == 0) {
	alert('ATTENZIONE !!! - E necessario inserire il telefono.')
	return false
	}
	if (document.register2.email.value == 0) {
	alert('ATTENZIONE !!! - E necessario inserire il tuo indirizzo email.')
	return false
	}
	if (document.register2.indirizzo.value == 0) {
	alert('ATTENZIONE !!! - E necessario inserire il tuo indirizzo.')
	return false
	}
	if (document.register2.citta.value == 0) {
	alert('ATTENZIONE !!! - E necessario inserire la tua cittą.')
	return false
	}	
	if (document.register2.cap.value == 0) {
	alert('ATTENZIONE !!! - E necessario inserire il tuo cap.')
	return false
	}	

	var pos = 0;
	var c=0;
	var i = document.register2.email.value;
	pos = i.indexOf("@");
	if (pos  =='-1') {
	alert('ATTENZIONE !!! - La mail inserita non e\' corretta.')
	return false
	}
	
	else if (!document.register2.privacy.checked) {
	alert('ATTENZIONE !!! - E necessario accettare l\'informativa sulla privacy.')
	return false
	}
}
