function trim(str){
	return str.replace(/^\s*|\s*$/g,"");
}

function controllaForm(f){
	var check = true;
	var output = '';
	switch (f.elements.tipo_form.value)		{
		case 'iscrizione_newsletter':
			if(trim(f.elements.email.value)==''){
				check = false;
				output += 'Inserisci la mail '+"\n";
			}
			if (f.elements.privacy.checked=="0") {
					check = false;
				output += 'Non sarà possibile inoltrare la richiesta se non si esprime il consenso alla Informativa Privacy !'+"\n";
			}
		break;
		case 'richiesta_preventivo':
			if(trim(f.elements.mail.value)==''){
				check = false;
				output += 'Inserisci la mail '+"\n";
			}
			if(trim(f.elements.nome.value)==''){
				check = false;
				output += 'Inserisci il nome '+"\n";
			}
			if(trim(f.elements.cognome.value)==''){
				check = false;
				output += 'Inserisci il cognome '+"\n";
			}
			if (f.elements.privacy.checked=="0") {
					check = false;
				output += 'Non sarà possibile inoltrare la richiesta se non si esprime il consenso alla Informativa Privacy !'+"\n";
			}
		break;
	}
	if(!check) alert(output);
	return check;
}
