			var hilite_color = "#e86a0f";
			var topHeight = 117;
			var botHeight = 54;
			var stageWidth;
			var stageHeight;
			var contentWidth= 830;
			var minHeight = 480;
			
			
			
			
			function kwSetup(){
				var a, b, x;
				
				if(navigator.appName == "Microsoft Internet Explorer"){
					browser = "IE";
					
				}
				if(navigator.appName == "Netscape"){
					browser = "NS";
				}
				if(navigator.appName == "Opera"){
					browser = "OP";
				}
				
				//
				if (this.innerWidth){
					stageWidth = parent.innerWidth;
					stageHeight = parent.innerHeight;
					
				}  else if (document.body.offsetWidth){
					stageWidth =  document.body.offsetWidth;
					if (document.body.offsetHeight){
						stageHeight =  document.body.offsetHeight;
						
					} else if(document.documentElement.clientHeight)
					{
						stageHeight = document.documentElement.clientHeight;
					}
					
				}
				else if(document.documentElement.clientWidth)
				{
					stageWidth = document.documentElement.clientWidth;
				}
			
				//			CONTENT
				
				
				var a = document.getElementById('scrollContent');
				if(stageHeight > minHeight){
					a.style.height = Number(stageHeight- botHeight - topHeight -27)+"px";
					a.style.overflow = "auto";
				} else {
					a.style.height = "auto";
				}
				
				 
				
				if(browser == "OP"){
					
					
				}
				if(browser == "IE"){
					
				}
				//
				var flashPluginVersion = GetSwfVer();
				var flashPluginVersionStr = "Die in Ihrem Browser installierte Plugin Version ist " + flashPluginVersion;
				var a = document.getElementById('container');
				a.innerHTML = flashPluginVersionStr;
				var majVers = parseInt(flashPluginVersion.split('.')[0]);
				if(majVers >= 7){
					var str =  '--- </p><p class="copy">';
				} else {

				}
			}
			//
			if (parent.window.innerWidth){
				parent.window.onresize = kwSetup;
			}
			
			function fRollOver(b){
				var a = document.getElementById(b);
				
				if(a.className == "link_0"){
					a.style.color = "#eecccc";
					a.style.backgroundColor = '#800c21';
				}
			}
			function fRollOut(b){
				var a = document.getElementById(b);
				if(a.className == "link_0"){
					a.style.color = "#dd8888";
					a.style.backgroundColor = 'transparent';
					
				}
			}
			//
			function topRollOver(b){
				var a = document.getElementById(b);
				
				if(a.className != "active_top"){
					a.style.color = "#a30528";
					a.style.backgroundColor = '#FFFFFF';
				}
			}
			function topRollOut(b){
				
				var a = document.getElementById(b);
				if(a.className != "active_top"){
					a.style.color = "#837766";
					a.style.backgroundColor = 'transparent';
					
				}
			}
