<!--

	function fixColsHeight()
	{
		lcol = document.getElementById('left-column-position');
		ccol = document.getElementById('center-column-position');
		rcol = document.getElementById('right-column-position');

		max = lcol.offsetHeight;
		if (ccol.offsetHeight > max)
			max = ccol.offsetHeight;
		if (rcol.offsetHeight > max)
			max = rcol.offsetHeight;
		//alert(lcol.offsetHeight+"->"+ccol.offsetHeight+"->"+rcol.offsetHeight+"="+max);
		
		max = max + "px";
		//alert(max);
		lcol.style.height = ccol.style.height = rcol.style.height = max;
	}

	window.onload = fixColsHeight;

//-->
