<!-- // Hide script from old browsers...
function ShowImage(winTitle, imageName, imgWidth, imgHeight)
{
  var scWidth  = 0;
  var scHeight = 0;

  // Set width to it's maximum (if limited by screen size)...
  if (imgWidth+40>screen.availWidth)
    scWidth = screen.availWidth;
  else
    scWidth= imgWidth+40;

  // Set height to it's maximum (if limited by screen size)...
  if (imgHeight+70>screen.availHeight-30)
    scHeight = screen.availHeight-30;
  else
    scHeight = imgHeight+70;

  imgWin=window.open(
    '','',  'toolbar=no,location=no,directories=no,'
          + 'status=no,menubar=no,scrollbars=yes,'
          + 'resizable=yes,width=' + scWidth
          + ',height=' + scHeight); // +',screenX=0,screenY=0'

  imgWin.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd\">");
  imgWin.document.write("<HTML>\n<HEAD>");
  imgWin.document.write("<TITLE>"+winTitle+"</TITLE>");
  imgWin.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">");
  imgWin.document.write("<LINK REL=\"STYLESHEET\" TYPE=\"text/css\" HREF=\"morten.css\">");
  imgWin.document.write("</HEAD>\n<BODY>\n");

  imgWin.document.write(
    "<CENTER>\n<P><IMG SRC=\"" + imageName + "\" ALT=\"" + winTitle + "\">\n");

  imgWin.document.write(
    "<BR>\n");

  imgWin.document.write(
    "<A TITLE=\"Close image window...\" HREF=\"javascript:top.close();\">Close</A>\n");

  imgWin.document.write( "</CENTER>\n</BODY>\n</HTML>\n" );

  imgWin.document.close();

  return false;
}
-->
