var Adresse = "";
var Fenster=self.name;
//alert(Fenster);

function umleiten() {
if (top.length == 0) 
   {
      var Adr = String(self.document.location);
	  
	  var Adresse = Adr.substring(Adr.lastIndexOf('/')+1,Adr.length);
	  top.location.href="index.html" //+ Adresse;
	  //alert("Sie werden umgeleitet!");
	  //parent.frames[1].location.href=Adresse;
   }
if (Fenster != "STF" && Fenster != "ebaindex" && Fenster != "ebaforum2")
   {
      var Adr = String(self.document.location);
	  var Adresse = Adr.substring(Adr.lastIndexOf('/')+1,Adr.length);
	  top.location.href="index.html" //+ Adresse;
	 //alert("Sie werden umgeleitet!");
	  //parent.frames[1].location.href=Adresse;
   }
 }  


function Anim(Bildname, Dateiname) {
	document.images[Bildname].src = Dateiname + '.gif';
}

function fenster(Fenstername, Dateiname, Dauer, Breite, Hohe, sb, tb, ra, verz) {
	Fenstername=window.open(Dateiname + '.htm', Fenstername, 'scrollbars=' + sb + ',width=' + Breite + ',height=' + Hohe + ',toolbar=' + tb + ',resizeable=' + ra + ',directories=' + verz);
	Fenstername.focus();
	Fenstername.setTimeout('close()', Dauer); 
} 

function fussnote(autor,titel,ort) {
	Fuss=window.open("","Fuss","width=350,height=150,scrollbars=yes,toolbar=no,resizeable=no,directories=no");
	Fuss.focus();
	Fuss.document.open();
	Fuss.document.write("<b>");
	Fuss.document.write(autor);
	Fuss.document.write("</b><br><I>");
	Fuss.document.write(titel);
	Fuss.document.write("</I><br>");
	Fuss.document.write(ort);
	Fuss.document.write("<br>");
} 


