//www.tinuschuepba.ch
//2005 - reinhards oik services

function GroesseAnpassen() {
	var iHoehe = 0;
	if( typeof( window.innerWidth ) == 'number' ) 
	{
		//Non-IE
		iHoehe = window.innerHeight;
	}
	else if( document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight) ) 
	{
		//IE 6+
		iHoehe = document.documentElement.clientHeight;
	} 
	else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) 
	{
		//IE 4
		iHoehe = document.body.clientHeight;
	}
	if (iHoehe > 150)
	{
		document.getElementById("inhalt").style.height = (iHoehe-155);
	}
}


function on(id)
{
	document.getElementById(id + "_off").style.display = "none";
	document.getElementById(id + "_on").style.display = "inline";
}

function off(id)
{
	document.getElementById(id + "_on").style.display = "none";
	document.getElementById(id + "_off").style.display = "inline";
}

