function goNow() { history.go(-1); } 
function printPage() 
{ 
  if (confirm("¿Imprimir página?")) 
  {
    window.print();
  }
  goNow();
} 