function stampa()
{
  if (window.print)
  {
    window.print();
  }
  else
  {
    alert('Funzione non supportata dal browser.');
  }
}
