function Verzeichnis(Separator)	{
	Brotkrume='';
	if(!Separator)	{ Separator=' --> '; }
	if(!location.hostname)	{ Verweis='file://'; }	else	{ Verweis='http://'; }
	Pfad=location.hostname+location.pathname;
	while(Pfad!=Pfad.replace(/\\/,'/'))	{ Pfad=Pfad.replace(/\\/,'/'); }
	Pfad=Pfad.replace(/\/\/\//,'');
	Pfad=Pfad.split('/');
	for(i=0; i<Pfad.length-1; i++)	{
		Verweis+=Pfad[i]+'/';
		Brotkrume+='<A href="'+Verweis+'">'+unescape(Pfad[i])+'</A>'+Separator;
	}
	Brotkrume+=unescape(Pfad[Pfad.length-1]);
	return(Brotkrume.replace(/^\S+\s\S+/,''));
}