// JavaScript Document
var popUpImageWin = 0;
function print_map() {
  if (popUpImageWin) {
    if(!popUpImageWin.closed) popUpImageWin.close();
  }
  x = Math.round((screen.width - 400)/2);
  y = Math.round((screen.height - 300)/2);
  w = popUpImageWin = window.open('', 'popUpImageWin', 'toolbar=no,status=no,menubar=no,scrollbars=no,copyhistory=yes,width='+400+',height='+300+',left='+x+',top='+y);
  w.document.writeln('<html><body  leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
  w.document.writeln('<scr'+'ipt>');
  w.document.writeln('function resizeWin(w, h) {');
  w.document.writeln('  w += 80; h +=60;');
  w.document.writeln('  window.resizeTo(w,h);');
  w.document.writeln('  x = Math.round((screen.width - w)/2);');
  w.document.writeln('  y = Math.round((screen.height - h)/2);');
  w.document.writeln('  window.moveTo(x>0 ? x : 0, y > 0 ? y : 0);');
  w.document.writeln('  window.print();');
  w.document.writeln('}');
  w.document.writeln('</scr'+'ipt>');
  w.document.writeln('<center><img src="/uploads/design_irg_karta_png_09.03.23.png" onclick="window.close();" onload="resizeWin(this.width,this.height)" alt="Click to close"/></center>');
  w.document.writeln('</body></html>');
  w.document.close();
  w.focus();
}