<!--
var file;  // File name for image
var title; // Title for image
var img;   // Image object

function showImage(id,title) {
  file = id;
  this.title = title;
  img = new Image();
  img.src = "/images/products/" + file + ".gif";  // Set image's path
  img.onload = popUpImage;  // Perform image pop-up after loaded
  return false;  
}

function popUpImage() {
  var features = "width=" + img.width + ",height=" + img.height + ",menubar=yes,resizable=yes";
  var win = window.open("","_blank",features);  // Open new window to display image

  // HTML to display tank image in pop-up window
  win.document.writeln( "<html>" );
  win.document.writeln( "<head>" );
  win.document.writeln( "<title>" + title + "</title>" );
  win.document.writeln( "</head>" );
  win.document.writeln( "<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">" );
  win.document.writeln( "<img src=\"" + img.src + "\">" );
  win.document.writeln( "</body>" );
  win.document.writeln( "</html>" );
}
//-->