function openImage(image) {
  newWindow = window.open("",
    "Kep", 
    "location=no,menubar=no,scrollbars=yes,status=no,titlebar=no,toolbar=no,resizable=no,width=800,height=600");
  newWindow.document.writeln('<HTML><HEAD>');

  newWindow.document.writeln('<SCRIPT TYPE="text/javascript">');

  newWindow.document.writeln('function pack() {');
  newWindow.document.writeln('  var x=document.images;');

  newWindow.document.writeln('  if (self.innerWidth) {');
  newWindow.document.writeln('    frameWidth = self.innerWidth;');
  newWindow.document.writeln('    frameHeight = self.innerHeight;');
  newWindow.document.writeln('  }');
  newWindow.document.writeln('  else if (document.documentElement && document.documentElement.clientWidth) {');
  newWindow.document.writeln('    frameWidth = document.documentElement.clientWidth;');
  newWindow.document.writeln('    frameHeight = document.documentElement.clientHeight;');
  newWindow.document.writeln('  }');
  newWindow.document.writeln('  else if (document.body) {');
  newWindow.document.writeln('    frameWidth = document.body.clientWidth;');
  newWindow.document.writeln('    frameHeight = document.body.clientHeight;');
  newWindow.document.writeln('  }');
  newWindow.document.writeln('  else {');
  newWindow.document.writeln('    return;');
  newWindow.document.writeln('  }');
  newWindow.document.writeln('  window.resizeTo(');
  newWindow.document.writeln("    x['kep'].width + 66,");
  newWindow.document.writeln("    x['kep'].height + 66);");
  newWindow.document.writeln('}');

  newWindow.document.writeln('</SCRIPT>');

  newWindow.document.writeln('<LINK HREF="popup.css" rel="stylesheet" type="text/css"/>');
  newWindow.document.writeln('<TITLE>Kép - www.tuzijatek-varazs.hu - tûzijáték - pirotechnika</TITLE>');
  newWindow.document.writeln('</HEAD>');

  //newWindow.document.writeln('<BODY onload="javascript:pack()" onfocus="javascript:pack()" onblur="javascript:pack()">');
  newWindow.document.writeln('<BODY onload="javascript:pack()">');

  newWindow.document.writeln('<CENTER>');
  newWindow.document.writeln('<IMG name="kep" src="' + image + '" onclick="self.close()"/>');
  newWindow.document.writeln('</CENTER>');
  newWindow.document.writeln('</BODY></HTML>');
  newWindow.document.close();
  newWindow.focus();
}

