function verweis() {
	// Frameset nachladen, wenn
	if(parent.parent.frames.length==0) {
		var menueLink = document.createElement("a");
		var menueZiel = document.createAttribute("href");
		menueZiel.nodeValue = "index.htm?" + location.pathname;
		var menueText = document.createTextNode("<< Menü einblenden");
		menueLink.appendChild(menueText);
		menueLink.setAttributeNode(menueZiel);

		document.getElementsByTagName("body")[0].insertBefore(menueLink, document.getElementsByTagName("body")[0].firstChild);
	}
}

function ladeSeite() {
	if(document.location.search != "") {
		top.Inhalt.location.replace("http://" + top.Inhalt.location.hostname + top.location.search.substr(1));
	}
}