function open_image(filename, title, width, height) {
  width += 50;
  height += 150;
  title = title.replace(/\s+/g, "+");
  window.open("image.php?file=" + filename + "&title=" + title, "_blank", "width=" + width + ",height=" + height + ",scrollbars=yes,resizable=yes");
}
