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;

	if(window.createPopup){
		var Popup = window.createPopup();
		var PopupBody = Popup.document.body;
		PopupBody.style.backgroundColor = "#2c498b";
		PopupBody.style.border = "solid black 1px";
		PopupBody.innerHTML = "<TABLE background=\"../../../BG_Dunkelblau_01.jpg\" BORDER=0 CELLSPACING=0 CELLPADDING=15 ALIGN=\"CENTER\"><TR><TD><IMG SRC=\""+Bild+"\" WIDTH=\""+Breite+"\" HEIGHT=\""+Hoehe+"\" ONCLICK=\"self.blur();parent.focus()\" BORDER=1 ALT=\""+Titel+"\"></TD></TR></TABLE>";
		Popup.show(100,100,Breite+34,Hoehe+34,document.body);
	} else {

   zu();
   setTimeout("sichtbar()",10);
	}
}

function sichtbar()
{
   Fenster_Hoehe = Hoehe + 34;
   Fenster_Breite = Breite + 44;
   Optionen = 'left=0,top=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster) 
   {
      document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE></HEAD>');
      document.writeln('<BODY BACKGROUND="../../../BG_Dunkelblau_01.jpg" BGCOLOR="#2c498b" TEXT="#FFFFFF" LINK="#888888" VLINK="#888888" ALINK="#888888"><TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 VALIGN="MIDDLE">');
      document.writeln('<TABLE CELLSPACING="0" CELLPADDING="0"><TR><TD WIDTH="10"></TD>');
      document.writeln('<TD><BR><a href="javascript:self.close()"><IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+Hoehe+' BORDER=1 ALT="'+Titel+'"></a></TD>');
      document.writeln('</TR></TABLE></BODY></HTML>');
      document.close();
 }
}

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