function fixheight()
//this was commented out on 7/17/08 per Pat to have the home page columns be height independent
{
/*
	if (document.getElementById("homecontent") && document.getElementById("homeLeftColBox"))
	{
		homecontent = document.getElementById("homecontent");
		homeleftcolbox = document.getElementById("homeLeftColBox");
		h1 = homecontent.offsetHeight;
		h2 = homeleftcolbox.offsetHeight;
		maxheight = (h1 > h2) ? h1 : h2;
		homecontent.style.height = maxheight+"px";
		homeleftcolbox.style.height = maxheight+"px";
	}
*/
}
