////////////////////////////////////////////////////////
//
// fixFooterBar 19.01.2005 Karin Pöchacker
// 	- pulls down the FooterBar for IE
//
///////////////////////////////////////////////////////

function fixFooterBar ()
{
	if (document.getElementById)
	{
		outer   = document.getElementById ("Outer");
		infocol = document.getElementById ("InfoCol");
		main    = document.getElementById ("Main");

		if (outer && infocol && main)
		{	
			
			maxHeight = Math.max ((outer.offsetHeight), Math.max (infocol.offsetHeight, main.offsetHeight));
			outer.style.height = maxHeight;	
		}
	}
}