function mkLink (url, label, target, extra) {
   if (!extra) { extra=''; }
   if (!target) { target='_self'; }
   if (url.indexOf("http://")==-1 && url.indexOf("www.")>=0) { url ="http://"+url; }
   document.write('<a href="' + url + '" target="'+ target + '" '  +  extra  + '>'+label+'</a>');
   //alert('<a href="' + url + '" target="'+ target + '" '  +  extra  + '>'+label+'</a>');

}

function verificaForm(nomeForm) {

	switch (nomeForm) {

		case 'richiesta_informazioni':
			if (document.forms[nomeForm].nome_richiedente.value=='') {
				alert('Inserire il nome!');
				return false;
			}

			if (document.forms[nomeForm].email_richiedente.value=='' && document.forms[nomeForm].telefono_richiedente.value=='') {
				alert('Inserire almeno un recapito (indirizzo email o numero di telefono)!');
				return false;
			}

			if (!document.forms[nomeForm].privacy.checked) {
				alert('E\' necessario accettare il trattamento dei dati personali.');
				return false;
			}

		break;
	}
	return true;
} // end func 
