function attiva() {
	ok = document.info.accettazione
	send = document.info.invia
	if(ok[0].checked == true) {
		send.disabled = true;
	}
	else {
		send.disabled = false;
	}
}

function newsValue(check,text) {
	if(check.checked == true) {
		text.value = 'SI';
	}
	else {
		text.value = 'NO';
	}
}

function checkFormCome() {
	error = 0;
	msg = '';
	if (document.info.cognome.value == "") {
		msg = msg + 'Il campo "Cognome" non puņ essere vuoto.\n';
		error = 1; 
	}
	if (document.info.nome.value == "") { 
		msg = msg + 'Il campo "Nome" non puņ essere vuoto.\n';
		error = 1; 
	}

	var emailReg = "^[\\w-_\.]*[\\w-_\.]\@[\\w]\.+[\\w]+[\\w]$";
	var regex = new RegExp(emailReg);
	
	if (document.info.email.value == "") {
		msg = msg + 'Il campo "e-Mail" non puņ essere vuoto.\n';
		error = 1; 
	}
	else {
		if (!(regex.test(document.info.email.value)))
		{
			msg = msg + 'Il campo "e-Mail" non č corretto\n';
			error = 1; 
		} 
	}

	if (document.info.username.value == "") {
		msg = msg + 'Il campo "Utente" non puņ essere vuoto.\n';
		error = 1; 
	}
	if (document.info.password.value == "" || document.info.password.value == " " || document.info.password.value == "  ") {
		msg = msg + 'Il campo "Password" non puņ essere vuoto.\n';
		error = 1; 
	}
	if (document.info.faxinfo.checked == true && (document.info.faxpref.value == "" || document.info.fax.value == "")) {
		msg = msg + 'Il campo "Fax" va compilato per ricevere fax informativi.\n';
		error = 1; 
	}


	var faxReg = "[0-9]";
	var regex_fax = new RegExp(faxReg);

	if (document.info.faxpref.value != "" || document.info.fax.value != "") {
		if (!(regex_fax.test(document.info.faxpref.value)))
		{
			msg = msg + 'Il campo "Fax (prefisso)" non č un numero\n';
			error = 1; 
		}
		if (!(regex_fax.test(document.info.fax.value)))
		{
			msg = msg + 'Il campo "Fax" non č un numero\n';
			error = 1; 
		}		
	}

	var telReg = "[0-9]";
	var regex_tel = new RegExp(faxReg);

	if (document.info.telpref.value != "" || document.info.tel.value != "") {
		if (!(regex_tel.test(document.info.telpref.value)))
		{
			msg = msg + 'Il campo "Telefono (prefisso)" non č un numero\n';
			error = 1; 
		}
		if (!(regex_tel.test(document.info.tel.value)))
		{
			msg = msg + 'Il campo "Telefono" non č un numero\n';
			error = 1; 
		}		
	}


	if (document.info.chknewsinntec.checked == false && document.info.chknewscc1.checked == false && document.info.chknewscc2.checked == false && document.info.chknewscc3.checked == false && document.info.chknewscc4.checked == false && document.info.chknewscc5.checked == false && document.info.chknewscc6.checked == false && document.info.chknewsrivista.checked == false) {
		msg = msg + 'Scegliere almeno una Newsletter.\n';
		error = 1; 
	}	


	if (error == 1) {
		alert (msg);
		return false;
	}
	else {
		document.info.submit();
		return true;
	}
}

