


function imgPopup(src, width, height, caption, windowTitle, margin) {			 
   
  var winHeight = height + 2*margin + 20;
  var winWidth = width + 2*margin;
  
  var win = window.open("","imagePopup","dependent=yes, directories=no, location=no, menubar=no, personalbar=no, toolbar=no, scrollbars=yes, status=no, resizable=no, width=" + winWidth + ", height=" + winHeight + "");

  win.document.open("text/html");
  win.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
  win.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');  
  win.document.writeln("<head><title>" + windowTitle + "</title><link href='css-schoeffel.css' rel='stylesheet' /></head>");  
  win.document.writeln("<body><div style='width: " + width + "px; margin: 0 auto; padding-top: " + margin + "px;'>");
  win.document.writeln("<a href='javascript: window.close();'><img src='" + src + "' width='" + width + "' height='" + height + "' border='0' style='border: 1px solid gray;' /></a>");
  if (caption != "") {
    win.document.writeln("<div class='imageCaption'>" + caption + "</div>");
  }
  win.document.writeln("</div></body></html>");
  win.document.close();

  win.focus();	
}
