	var Breite = parseInt(screen.availWidth);

	var IE_Aufruf = false;
	if ( navigator.appName.indexOf("icrosof") != -1) IE_Aufruf = true; 

	function FontHoeheSetzen ()   {
		if ( IE_Aufruf ) 
				{ document.styleSheets[0].rules[1].style.fontSize = "15pt"; document.styleSheets[0].rules[9].style.fontSize = "15pt"; document.styleSheets[0].rules[1].style.lineHeight = "18pt";
						document.styleSheets[0].rules[6].style.fontSize = "17pt"; document.styleSheets[0].rules[10].style.fontSize = "17pt"; document.styleSheets[0].rules[11].style.fontSize = "14pt"; 
						document.styleSheets[0].rules[15].style.fontSize = "13pt"; document.styleSheets[0].rules[16].style.fontSize = "13pt";
						document.styleSheets[0].rules[18].style.fontSize = "15pt"; document.styleSheets[0].rules[19].style.fontSize = "13pt"   }
			else 
				{ document.styleSheets[0].cssRules[1].style.fontSize = "15pt"; document.styleSheets[0].cssRules[9].style.fontSize = "15pt"; document.styleSheets[0].cssRules[1].style.lineHeight = "18pt";
						document.styleSheets[0].cssRules[6].style.fontSize = "17pt"; document.styleSheets[0].cssRules[10].style.fontSize = "17pt"; document.styleSheets[0].cssRules[11].style.fontSize = "14pt";
						document.styleSheets[0].cssRules[15].style.fontSize = "13pt"; document.styleSheets[0].cssRules[16].style.fontSize = "13pt";
						document.styleSheets[0].cssRules[18].style.fontSize = "15pt"; document.styleSheets[0].cssRules[19].style.fontSize = "13pt" }		}

	if (Breite > 1500) FontHoeheSetzen();

	window.focus()

