function start()
		 {
		 	document.getElementById("anzeige").style.visibility="hidden";
		 	
		 	var bodyBreite=document.body.clientWidth;
		 	var bodyHoehe=document.body.clientHeight;

			var maindivHoehe = parseInt( bodyHoehe *65 /100);
			var maindivBreite = parseInt(bodyBreite);
			
			var bildKonstante = parseInt(maindivBreite / 1600 *100);
			var bildHoehe = parseInt(272 * bildKonstante /100);
			
			var headHoehe = parseInt(maindivHoehe *40/100);
			var footHoehe = parseInt(maindivHoehe *50/100); 
		 	
		 	var logoHoehe = parseInt( maindivHoehe *10/100);
		 	
		 	var menueHoehe = parseInt(headHoehe *13/100);
		 	
			var contentHoehe1 = parseInt( footHoehe *90/100);
			var contentPos1 = parseInt( footHoehe *10/100);
  		var datum = new Date();
  		var datumStunde = datum.getHours();
			

			document.intro.mainDivHoehe.value=maindivHoehe;
			document.intro.mainDivBreite.value=maindivBreite;
			
			document.intro.bildHoehe.value=bildHoehe;
			
			document.intro.headHoehe.value=headHoehe;
			document.intro.footHoehe.value=footHoehe;
			
			document.intro.logoHoehe.value=logoHoehe;
			
			document.intro.menueHoehe.value=menueHoehe;
			
			document.intro.contentHoehe1.value=contentHoehe1;
  		document.intro.contentPos1.value=contentPos1;
  		
  		document.intro.datum.value=datumStunde;
			
  		 document.intro.submit();
  		 
		 }

