function zumAnfang() {
/*	var alteref = top.frames['inhalt'].location.href;
	var ankerInd = alteref.indexOf('#');
	if (ankerInd < 0) {
		top.frames['inhalt'].location.href = alteref + '#top';
	} else {
		top.frames['inhalt'].location.href = alteref.substring(0, ankerInd) + '#top';
	}
*/
	top.frames['inhalt'].scrollTo(0,0);
	return;
}
function drucken() {
	if (navigator.appName == 'Microsoft Internet Explorer')
        {
		window.parent.frames['inhalt'].focus();
		window.print();
	} else {
		top.frames['inhalt'].print();
	}
	return;
}
function loadFrames() {
	top.frames['links'].location.href = 'links.html';
        return;
}
function resetFrames() {
	top.frames['links'].location.href = 'blank.html';
        return;
}
function setBild(url) {
	document.images['Bild'].src = url;
	return;
}


