function position()
{
	height = document.body.scrollHeight;

	if ( height <= 0 )
	{
		setTimeout("position()", 100);
	}
	else
	{
		if ( height <= document.body.clientHeight )
		{
			height = document.body.clientHeight;
		}

		document.all['content'].style.height = Number( height - 110 );
		
		// Unhide Site Map text
		document.all['sitemapdiv'].style.visibility = "Visible";
	}
	
}