	Protokoll = self.location.protocol;
	Pfad = self.location.pathname;
	Basis = Protokoll + '//' + Pfad.substring(1,Pfad.length-11)
	neues_Fenster = null;
	
	function bigpic(Bild0,Titel0,Breite0,Hoehe0,Leer0)
	{
	   Bild = Bild0;
	   Titel = Titel0;
	   Breite = Breite0;
	   Hoehe = Hoehe0;
	   Leer = Leer0;
	   zu();
	   setTimeout("sichtbar()",1);
	}
	
	function sichtbar()
	{  
	   Fenster_Hoehe = Hoehe + 0;
	   Fenster_Breite = Breite + 0;
	   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,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></head>');
	      document.writeln('<body bgcolor="#000000" leftmargin=0 topmargin=0 marginheight=0 marginwidth=0><table border="0" cellspacing="0" cellpadding="0" align="CENTER" valign="MIDDLE"><tr><td><table border="0" cellspacing="0" cellpadding="0" background="'+Bild+'"><tr><td><a href="javascript:self.close()"><img src="img/c-'+Leer+'.gif" width='+Breite+' height='+Hoehe+' border=0 alt="'+Titel+' - Click to close!"></a></td></tr></table></td>');
	      document.writeln('</tr></table></div></body></html>');
	   }
	}
	
	function zu()
	{
	   if (neues_Fenster != null)
	     if (!neues_Fenster.closed)
	       neues_Fenster.close();
	}
	
