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