function self_href()	{

	var parameter = self.location.href;
	var pfad = parameter.split("/");
	var dateiname = pfad[pfad.length-2] + "/" + pfad[pfad.length-1];
	return dateiname;
	}

function frameset_reload(submenu_href,content_href,change_submenu)	{
// submenu_href ohne Pfadangabe da im Root-Verzeichnis
// content_href mit Pfadangabe ab Root-Verzeichnis
// change_submenu: nur wenn "no" dann Untermenü NICHT wechseln

	var parameter;
	var pfad;
	var dateiname;

	if(top.frameset_load != "ok")
		top.location.href = "../mainframe_leer.htm?" + submenu_href + "+" + content_href;
	else
		if(change_submenu != "no")
		{
		parameter = parent.submenu.document.location.href;
		pfad = parameter.split("/");
		dateiname = pfad[pfad.length - 1];
		if(dateiname != submenu_href)
			parent.submenu.location.href = "../" + submenu_href;
		}
	}

function submenu_content_load()	{

	var Parameter;
	var file_href;

	if(top.location.search.length > 0)
		{
		Parameter =  top.location.search;
		file_href  = Parameter.split("+");
		file_href[0] = file_href[0].substr(1,file_href[0].length);
		parent.submenu.location.href = file_href[0];
		parent.content.location.href = file_href[1];
		}
	}
