// STAMPA E-MAIL (ANTI-SPAM)
function printMail(nome, dominio, testo) {
  document.write('<a href=\"mailto:' + nome + '@' + dominio + '\">');
  if (testo=='') {document.write(nome + '@' + dominio)}
  else {document.write(testo)};
  document.write('</a>')
}
