		Protokoll = self.location.protocol;
		Pfad = self.location.pathname;
		Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-50)
		neues_Fenster = null;

		function errorTrap() {return true;}
		window.onerror = errorTrap;

		function Zeigen(Bild0,Titel0,Breite0,Hoehe0,Text0)
		{
		
  		Bild = Bild0;
  		Titel = Titel0;
		Breite = Breite0;
   		Hoehe = Hoehe0;
   		Text= Text0;
   		zu();
   		setTimeout("sichtbar()",1000);
		}

		function sichtbar()
		{  
  		Fenster_Hoehe = Hoehe + 30;
 		Fenster_Breite = Breite + 40;
   		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('<HTML><HEAD><TITLE>' + Titel + '</TITLE><link rel=stylesheet type="text/css" href="lagz.css"></HEAD>');
      		document.writeln('<BODY BGCOLOR="FFFFFF" TEXT="#000000"><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE" WIDTH='+Breite+' HEIGHT='+Hoehe+'>');
		document.writeln('<TR><TD align=center>'+Titel+'</td></tr>');
		document.writeln('<TR><TD align=center><IMG SRC="'+Bild+'" BORDER=0 ALT="'+Titel+'"></TD></TR>');
      		document.writeln('<TR><TD align=Center ><font size="2">'+Text+'</font></TD><TD></TR>');
		document.writeln('</TABLE></BODY></HTML>');
   		}
		}

		function zu()
		{
  	       if (neues_Fenster != null)
     			if (!neues_Fenster.closed)
        			if (neues_Fenster.close)
          				 neues_Fenster.close(); 
		}

