
function cms_form_controllo(obbli, mail)
{var v, i = 0, errori = 0;
if( obbli != 0 ) {
	v = obbli.split(","); //esplodo la stringa
	while ( v[i] ) {
		var obbli = v[i].replace(/^\s+|\s+$/g, ''); //pulisco la stringa da possibili spazi
		if ( document.getElementById(obbli).value == "" ) {
			document.getElementById(obbli).style.background = "#F00";
			errori++;
		} else {
			document.getElementById(obbli).style.background = "#FFF";
		}
		i++;
	}
}
	if ( errori > 0 ) {
		alert("Attenzione!\nSi prega di compilare tutti i campi obbligatori.");
		return false;
	} else {
		if ( mail != 0 ) {
			v = mail.split(",");
			i = 0;
			while ( v[i] ) {
				var email = v[i].replace(/^\s+|\s+$/g, '');
				email = document.getElementById(email);
				if ((email.value.indexOf("@") == -1) | (email.value.indexOf(".") == -1) | (email.value.length < 7)) {
					email.style.background = "#f00";
					alert("Attenzione!\nEmail non valida.");
					return false;
				} else {
					document.getElementById(email).style.background = "#FFF";
					return true;
				}
				i++;
			}
		} else {
			return true;
		}
	}
}

