function aufruf(wohin) {
	var actionlink;
	actionlink =  wohin + ".htm";
	var menulink;
	menulink = "m" + wohin + ".htm";
    top.action.document.location.href = actionlink;
    top.menu.document.location.href = menulink; 
};

function ladeframenach() {
if (!parent.bottom) {
pfad = location.href;
ende = pfad.length;
pos = pfad.lastIndexOf("/");
if (pfad.indexOf("-i") > 0) {
	posi = pfad.lastIndexOf("-i");
	posi = posi;
	dateiname = pfad.substring(pos+1,posi) + ".htm";
}
else {
	dateiname = pfad.substring(pos+1,ende);
	}
location.href = "f" + dateiname;
};

function ladeframenachtop() {
if (!parent.top) {
pfad = location.href;
ende = pfad.length;
pos = pfad.lastIndexOf("/");
if (pfad.indexOf("-i") > 0) {
	posi = pfad.lastIndexOf("-i");
	posi = posi;
	dateiname = pfad.substring(pos+1,posi) + ".htm";
}
else {
	dateiname = pfad.substring(pos+1,ende);
	}
location.href = "f" + dateiname;
}
}