function hoehe(x) 
{

var x = 718;

	if (self.innerHeight)
	 // all except Explorer 
		{
		
		if(window.innerHeight<x)
			{
				document.getElementById("container_aussen").style.marginTop = "0px";
			}
	
		else
			{
				document.getElementById("container_aussen").style.marginTop = (window.innerHeight-x)/2+"px";

			
}
		}
	
	else if (document.documentElement && document.documentElement.clientHeight)
		// Explorer 6 Strict Mode
		{
		if (document.documentElement.clientHeight<700)
			{
				document.getElementById("container_aussen").style.marginTop = "0px";
			}
			else
			{
				document.getElementById("container_aussen").style.marginTop = (document.documentElement.clientHeight-x)/2+"px";
			}
		}
	
	else if (document.body) 
	// other Explorers
		{
		if (document.body.clientHeight<700)
			{
				document.getElementById("container_aussen").style.marginTop = "0px";
			}
			else
			{
				document.getElementById("container_aussen").style.marginTop = (document.body.clientHeight-x)/2+"px";
			}
		
		}	

}



