<!--
neues_Fenster = null;

function ShowPic(Bild0,Titel0,Breite0,Hoehe0)
{
 Bild = Bild0;
 Titel = Titel0;
 Breite = Breite0;
 Hoehe = Hoehe0;
 zu();
 setTimeout("sichtbar()",1000);
}

function sichtbar()
{
 Fenster_Hoehe = Hoehe + 60;
 Fenster_Breite = Breite + 30;
 Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,height='+Fenster_Hoehe+',width='+Fenster_Breite;
 neues_Fenster = window.open('','',Optionen)
 with (neues_Fenster)
{
 document.writeln('<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">');
 document.writeln('<html><head><title>'+ Titel +'</title>');
 document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
 document.writeln('<link rel="stylesheet" type="text/css" href="showpic.css"></head>');
 document.writeln('<body bgcolor="#E6CC32" background="img/bg2.gif" text="#000000"><table align="center" border="0" cellspacing="0" cellpadding="0" width= '+ Breite + ' summary="">');
 document.writeln('<tr><td><a href="javascript:window.close()"><img src="'+Bild+'" width="'+Breite+'" height="'+Hoehe+'" border="0" alt="'+Titel+'"></a></td></tr>')
 document.writeln('<tr><td align="center"><p><b><i>'+ Titel +'</i></b><br>');
 document.writeln('<span class="klein">Bild anklicken schlie&szlig;t das Fenster!</span></p>');
 document.writeln('</td></tr></table></body></html>');
 }
}

function zu()
{
 if (neues_Fenster != null)
  if (!neues_Fenster.closed)
   neues_Fenster.close();
}

//-->