function open_image(image, title) {
  newWindow = window.open("",
    "Kep", 
    "location=no,menubar=no,scrollbars=yes,status=no,titlebar=no,toolbar=no,resizable=yes,width=800,height=800");
  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("  width = x['kep'].width; ");
  newWindow.document.writeln("  height = x['kep'].height; ");
  newWindow.document.writeln("  if(width > 900) { ");
  newWindow.document.writeln("	  width = 900;");
  newWindow.document.writeln("  }");
  newWindow.document.writeln("  if(height > 600) { ");
  newWindow.document.writeln("	  height = 600;");
  newWindow.document.writeln("  }");
  newWindow.document.writeln('  window.resizeTo(');
  newWindow.document.writeln("    width + 66,");
  newWindow.document.writeln("    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 - ' + title + '</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()" alt="' + title + '"/>');
  newWindow.document.writeln('</CENTER>');
  newWindow.document.writeln('</BODY></HTML>');
  newWindow.document.close();
  newWindow.focus();
}

