
Protokoll = self.location.protocol;
Pfad = self.location.pathname;
Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-11)
neues_Fenster = null;


function Zeigen(Bild0,Titel0,Breite0,Hoehe0)
{
Bild = Bild0;
Titel = Titel0;
Breite = Breite0;
Hoehe = Hoehe0;
zu();
setTimeout("sichtbar()",1000);
}

function sichtbar()
{
Fenster_Hoehe = Hoehe + 35;
Fenster_Breite = Breite + 40;
Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbar=0,resizable=0,left=500, top=100,height='+Fenster_Hoehe+',width='+Fenster_Breite;
neues_Fenster = window.open('','',Optionen)
with (neues_Fenster)
     {
     document.write('<HTML><head><title>' + Titel + '</title></head>');
     document.write('<body bgcolor="#ccceac" text="darkgreen"><div align=center><table border=1 cellspacing=0 cellpadding=0 valign="middle"><tr><td>');
     document.write('<img src="'+Bild+'" width='+Breite+' height='+Hoehe+' Border=0 alt=" '+Titel+'" ><br><a href="javascript:self.close()"><font face=fixedsys,Arial size=2pt color="darkgreen">bitte schließen</font></a></td>');
     document.write('</tr></table></div></body></html>');
     }
}

function zu()
{
if (neues_Fenster != null)
   if (!neues_Fenster.closed)
      neues_Fenster.close();
}
