function hide(){

	detailTO=setTimeout("hideDetails()",500);
}

function hideDetails(){

	document.getElementById('subdivdnb').style.display='none';
	document.getElementById('subdivsonstige').style.display='none';
	document.getElementById('subdivtop10').style.display='none';
}
function stopHiding(){
	if(detailTO)
	{
		clearTimeout(detailTO);
	}
}


function position_footer()
{

 	//var windowX =(document.documentElement && document.documentElement.clientWidth) || window.innerWidth || self.innerWidth || document.body.clientWidth;
	//var windowY =(document.documentElement && document.documentElement.clientHeight) || window.innerHeight || self.innerHeight || document.body.clientHeight;

	if( navigator.appName.indexOf("Explorer") != -1 )
	{
		var pageY 	=document.body.scrollHeight;
		var windowY =(document.documentElement && document.documentElement.clientHeight) || window.innerHeight || self.innerHeight || document.body.clientHeight;
	}
	else
	{
		var pageY 	=document.body.offsetHeight;
		var windowY = self.innerHeight;
	}
	


	if(pageY + 100	 > windowY)
         {
            document.getElementById('footer').style.position = 'relative';

         }
         else
         {
            document.getElementById('footer').style.position = 'absolute';
            document.getElementById('footer').style.bottom = '0px';
            document.getElementById('footer').style.width = '100%';

         }
}