
function imgPopup(src, width, height, caption, windowTitle, margin) {			 
  
  var winHeight = height + 2*margin;
  var winWidth = width + 3*margin;
  
  var win = window.open("","imagePopup","dependent=yes, directories=no, location=no, menubar=no, personalbar=no, toolbar=no, scrollbars=no, 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='typo.css' rel='stylesheet' /></head>");
  win.document.writeln("<body style='margin:0; padding:0;'><div style='width: " + width + "px; margin: 0 auto; margin-top: " + margin + "px;'>");
  win.document.writeln("<a href='javascript: window.close();'><img src='" + src + "' border='0' style='border: 1px solid gray;' /></a>");
  win.document.writeln("<div id='imageCaption'>" + caption + "</div>");
  win.document.writeln("</div></body></html>");
  win.document.close();

  win.focus();	
}






