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>Bútorland - Kép</TITLE>');
  newWindow.document.writeln('</HEAD>');

  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();
}

function openImage2(tartalom_id, kep_id) {

 newWindow = window.open("http://www.butorland.hu/inc/kepnezegeto.php?tartalom_id="+tartalom_id+"&kep_id="+kep_id,
    "new_win", 
    "width=780, height=580, status=no, toolbar=no, menubar=no, resizable=no, scrollbars=no, titlebar=no");
}

