var imageWindow = null;

function imagePopup(imgUrl, imgWidth, imgHeight, imgTitle)
{
  if (!imageWindow || imageWindow.closed)
  {
    // Bildschirmgröße ermitteln und Fensterposition (links/oben) berechnen

    screenWidth = screen.width;
    screenHeight = screen.height;

    winWidth = imgWidth;
    winHeight = imgHeight;

    var X = (screenWidth - winWidth) / 2;
    var Y = (screenHeight - winHeight) / 2;

    winSettings = "toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width="+winWidth+",height="+winHeight+",";

    msIE = navigator.appName.indexOf("icrosoft");
    if (msIE == -1)
    {
      winSettings = winSettings+"screenX="+X+",screenY="+Y;
    }
    else
    {
      winSettings = winSettings+"left="+X+",top="+Y;
    }

    imageWindow = window.open('','imageWindow',winSettings);

    imageWindow.document.open();
    imageWindow.document.write('<html><head>');
    imageWindow.document.write('<title>'+imgTitle+'</title>');
    imageWindow.document.write('</head>');
    imageWindow.document.write('<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" bottommargin="0">');
    imageWindow.document.write('<a href="JavaScript:self.close()"><img src="'+imgUrl+'" hspace="0" vspace="0" border="0"></a>');
    imageWindow.document.write('</body>');
    imageWindow.document.write('</html>');
    imageWindow.document.close()

    imageWindow.focus();
  }
  else
  {
    imageWindow.focus();
  }
}

