function Fix_SpecialBrowserBugs() {		var ua = navigator.userAgent;	if(ua.indexOf("MSIE 5.0; Mac") != -1) {		Fix_Macintosh_MSIE_50()	}	}function Fix_Macintosh_MSIE_50() {		var verticalOffset = 17;		var fixLayer = [		// lotto		"SpielscheinnummerLayer", "EinsatzLayer", "horoskopSternzeichenLayer",		// RubbelLotto		"msgAnzahlGekauft", "msgAnzahlGespielt", "msgGewinn"	];		for (var i in fixLayer) {		layerName = fixLayer[i];				if(document.all[layerName]) {					document.all[layerName].style.top = parseInt(document.all[layerName].style.top) - verticalOffset;		}	}}function Fix_System_IE_formShineThroughHide() {	if(document.Lotto_type == "System") {		MM_showHideLayers('SystemSystemwahlLayer','','hide','bgBTNHider','','show');	}}function Fix_System_IE_formShineThroughShow() {	if(document.Lotto_type == "System") {		MM_showHideLayers('SystemSystemwahlLayer','','show','bgBTNHider','','hide');	}}