//zeigt Bild "ImageName" in neuem 640x480-Fenster (Querformat)
function ShowImageWin(ImageName, ImageTitle)
{
  w = window.open( "", "", "screenY=20,screenX=20,height=480,width=640,innerHeight=480,innerWidth=640,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no");
  w.document.open;
  w.document.write('<html><head><title>');
  w.document.write(ImageTitle);
  w.document.write('</title>');
  w.document.write('<style type="text/css">');
  w.document.write('body {margin-left:-8; margin-top:-8;}');
  w.document.write('</style>');
  w.document.write('</head><body>');
  w.document.write('<p><a href="javascript:window.close()">');
  w.document.write('<img border="0" src="');
  w.document.write(ImageName);
  w.document.write('"  alt="klicken Sie auf das Bild, um das Fenster zu schließen!"></a></p>');
  w.document.write('</body></html>');
  w.document.close;
}
//zeigt Bild "ImageName" in neuem 480x640-Fenster (Hochformat)
function ShowImageWinP(ImageName, ImageTitle)
{
  w = window.open( "", "", "screenY=20,screenX=20,height=640,width=480,innerHeight=640,innerWidth=480,location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no");
  w.document.open;
  w.document.write('<html><head><title>');
  w.document.write(ImageTitle);
  w.document.write('</title>');
  w.document.write('<style type="text/css">');
  w.document.write('body {margin-left:-8; margin-top:-8;}');
  w.document.write('</style>');
  w.document.write('</head><body>');
  w.document.write('<p><a href="javascript:window.close()">');
  w.document.write('<img border="0" src="');
  w.document.write(ImageName);
  w.document.write('"  alt="klicken Sie auf das Bild, um das Fenster zu schließen!"></a></p>');
  w.document.write('</body></html>');
  w.document.close;
}
//zeigt Bild "ImageName" in neuem Fenster mit Größenangabe (Standard 640x480)
function ShowImageWinEx(ImageName, ImageTitle, ImageWidth, ImageHeight)
{
  if ((!ImageWidth)||(!ImageHeight))
  {
	ImageWidth = 640;
	ImageHeight = 480;
  }
  w = window.open( "", "", "screenY=20,screenX=20,height="+ImageHeight+",width="+ImageWidth+",innerHeight="+ImageHeight+",innerWidth="+ImageWidth+",location=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no");
  w.document.open;
  w.document.writeln('<html><head><title>'+ImageTitle+'</title>');
  w.document.writeln('<style type="text/css">body {margin-left:-8; margin-top:-8;}</style></head>');
  w.document.writeln('<body><p><a href="javascript:window.close()">');
  w.document.write('<img border="0" src="'+ImageName+'" ');
  w.document.writeln('alt="'+ImageTitle+'  -  klicken Sie auf das Bild, um das Fenster zu schließen!">');
  w.document.writeln('</a></p></body></html>');
  w.document.close;
}

