image_url = null;
image_width = null;
image_height = null;

function pic_window(image_url, image_width, image_height)
{
  if (image_url != null) 
  {
    if (image_width == null)
      image_width = 400;
    if (image_height == null)
      image_height = 300;

    temp = "toolbar=no,width=" + (image_width + 20) + ",height=" + (image_height + 65);

    view_window = window.open("","ImageViewer",temp);
    view_window.document.open("text/html");

    view_window.document.writeln("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"DTD/xhtml1-transitional.dtd\">\n<html xmlns=\"http://www.w3.org/1999/xhtml\">");
    view_window.document.writeln("<head>\n<base href=\"http://www.zone15.com\" />\n<title>Preview</title>\n</head>\n\n<body bgcolor=\"#C8C8C8\">\n");
    view_window.document.writeln("<center>\n<img src=\"" + image_url + "\" width=\"" + image_width + "\" height=\"" + image_height + "\" /><br />");
    view_window.document.writeln("<form><input type=\"button\" value=\"Close Window\" onclick=\"window.close();return true;\"></form>");
    view_window.document.writeln("</center>\n\n</body>\n</html>");
    view_window.document.close();
  }
}
