/*++++++++++++++++++++++++++++++++++++++++++++++++++++
[] START
+++++++++++++++++++++++++++++++++++++++++++++++++++*/

function colMinHeight (htmltag, toptag, bottomtag) {
	/*|*/
	//alert (htmltag + " :: " + "width: " + document.getElementById(htmltag).scrollWidth + " | height: " + document.getElementById(htmltag).scrollHeight);
	allBorderVertWidth = 2;
	allScrollHeight = document.getElementById(htmltag).scrollHeight;
	topScrollHeight = document.getElementById(toptag).scrollHeight;
	bottomScrollHeight = document.getElementById(bottomtag).scrollHeight;
	
	endColMinHeight = allScrollHeight - (topScrollHeight + bottomScrollHeight + allBorderVertWidth);
	
	//alert (endColMinHeight + " = " + allScrollHeight + " - (" + topScrollHeight + " + " + bottomScrollHeight + " + " + allBorderVertWidth + ")");
	
	document.getElementById('left').style.minHeight = endColMinHeight + "px";
	document.getElementById('center').style.minHeight = endColMinHeight + "px";
	document.getElementById('right').style.minHeight = endColMinHeight + "px";
	
	//alert(navigator.appName);
	//alert(navigator.userAgent);
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++
[] STOP
+++++++++++++++++++++++++++++++++++++++++++++++++++*/