var bildwin, textwin;

/*------ Display picture in popup window ------*/
function BildSeite(datei,w,h,text)
{
if (w<h) /* Hochformat */
 {w1=w+73; h1=h+30;}
else
 {w1=w+40; h1=h+80}
if (text!="") h1=h1+20; /* Platz fuer Unterschrift */

if (bildwin) if (!bildwin.closed) bildwin.close();
bildwin = window.open("", "Zweitfenster","width="+w1+",height="+h1+",scrollbars=no,menubar=no,resizable=no,status=no");
bildwin.blur();
bildwin.moveTo((screen.width-w1)/2, (screen.height-h1)/2-10);
window.clearTimeout();
window.setTimeout("bildwin.close()",300000);  /* Timeout fuer Bildfenster */
with(bildwin.document)
 {
  write("<table><tr><td>");
  if (w<h)   /* Hochformat */
   {  
    write("<img width="+w+" height="+h+" align='middle' src="+datei+"> &nbsp;&nbsp;<a href='javascript:close()'><img border=0 align='middle' src='../thumb/arrow.up.gif' alt='Schlie&szlig;en'> </a>");
  if (text!="") write("</td></tr><tr><td bgcolor='#667770'><font color='ffffff'>"+text+"</font>");
   }
  else
   {
    write("<center><img  width="+w+" height="+h+" src="+datei+"></center></td></tr>");
  if (text!="") write("<tr><td bgcolor='#667770'><font color='ffffff'>"+text+"</font></td></tr>");
write("<tr><td><center><a href='javascript:close()'><img border=0 src='../thumb/arrow.up.gif' alt='Schlie&szlig;en'></a></center>");
   }
  write("</td></tr></table>");
  linkColor="darkslategray";
  bgColor="darkslategray"; 
 }
bildwin.focus();
if (textwin) if (!textwin.closed) textwin.focus();
}

/*----- Display picture in active window ------*/
function BildRoot(datei,w,h,text)
{
with(document)
 {
  write("<center><table><tr><td>");
  if (w<h)   /* Hochformat */
   {  
    write("<img  width="+w+" height="+h+" align='middle' src="+datei+"> &nbsp;&nbsp;<a href='javascript:history.back()'><img border=0 align='middle' src='../thumb/arrow.up.gif' alt='Schlie&szlig;en'> </a>");
  if (text!="") write("</td></tr><tr><td bgcolor='#667770'><font color='ffffff'>"+text+"</font>");
   }
  else
   {
    write("<center><img  width="+w+" height="+h+" src="+datei+"></center></td></tr>");
  if (text!="") write("<tr><td bgcolor='#667770'><font color='ffffff'>"+text+"</font></td></tr>");
write("<tr><td><center><a href='javascript:history.back()'><img border=0 src='../thumb/arrow.up.gif' alt='Schlie&szlig;en'></a></center>");
   }
  write("</td></tr></table></center>");
  linkColor="darkslategray";
  bgColor="darkslategray"; 
 }
}

/*------ Display picture in popup window ------*/
function TextPopup(w,h,text)
{
h1=h+40;
if (textwin) if(!textwin.closed) textwin.close();
textwin = window.open("","Textfenster","width="+w+",height="+h1+",scrollbars=no,menubar=no,resizable=yes,status=no");
//textwin.moveTo((screen.width-w)/2, (screen.height-h1)/2);
window.setTimeout("textwin.close()",300000);  /* Timeout fuer Bildfenster */
with(textwin.document)
 {
  write("<center><table cellpadding=5>");
  write("<tr><td bgcolor='#eeeedd'><font color='000000' style='font-family:Verdana,sans-serif;font-size:9pt;line-height:12pt;'>"+text+"</font></td></tr>");
write("<tr><td><center><a href='javascript:close()'><img border=0 src='../thumb/arrow.up.gif' alt='Schlie&szlig;en'></a></center>");
  write("</td></tr></table></center>");
  linkColor="darkslategray";
  bgColor="#cccccc"; 
 }
}
