function imgTop_onclick() {
	//alert("go top");
	var sLocation = window.parent.hauptframe.location.href;
	var iPos = sLocation.lastIndexOf("#");
	if (iPos!=-1)
		sLocation = sLocation.substr(0,iPos);
	sLocation = sLocation + "#Anfang";
	//alert(sLocation);
	window.parent.hauptframe.location.href = sLocation;
}

function imgPrint_onclick() {
	oNewWindow = window.open(window.parent.ifrm1.location.href);
	do
	{
	}
	while (oNewWindow.document.readyState=="loading");
	var aStylePath = oNewWindow.document.styleSheets[0].href.split("/");
	aStylePath[aStylePath.length-1]="../CSS/printlayout.css";
	oNewWindow.document.styleSheets[0].href = aStylePath.join("/");
        oNewWindow.print();
}

