﻿function openPopup(url, titolo) {
  var win = window.open('','','width=' + 600 + ', height=' + 550);
  
  win.document.writeln('<html><head>');
  win.document.writeln('<title>'+titolo+'</title>');
  win.document.writeln('<style type="text/css">');
  win.document.writeln('body {');
  win.document.writeln('margin: 0px; padding: 0px;');
  win.document.writeln('}');
  win.document.writeln('</style>');
  win.document.writeln('</head>');
  win.document.writeln('<body>');
  win.document.writeln('<table width="100%">');
  win.document.writeln('<tr>');
  win.document.writeln('<td style="text-align: right; border-bottom: 1px dashed #505050;">');
  win.document.writeln('<a href="#" style="color: #505050; text-decoration: none; font: bold 10px Verdana, Geneva, Arial, sans-serif;" onclick="window.close()">Chiudi&nbsp;<img src="/images/buttonchiudi.gif" width="11" height="11" style="border: 0px;" alt="Chiudi finestra" /></a>');
  win.document.writeln('</td>');
  win.document.writeln('</tr>');
  win.document.writeln('<tr>');
  win.document.writeln('<td style="text-align: center; vertical-align: middle;">');
  win.document.writeln('<img alt="'+titolo+'" src="'+url+'" />');
  win.document.writeln('</td>');
  win.document.writeln('</tr>');
  win.document.writeln('</table>');
  win.document.writeln('</body>');
  win.document.writeln('</html>');
  win.document.close();

  return false;
}

function openPrintPage(url) {
  var w = window.open(url, '', 'innerHeight=550, height=550, width=620, innerWidth=620, scrollbars, menubar');

  return false;
}



