onresize = function() {
	SnapSize();
}

onload = function() {
	SnapSize();
}

function SnapSize() {
	var myElementStyle=document.getElementById('LeftColElement').style;
	var src_Height = document.getElementById('Content').clientHeight;
	var menu_Height = document.getElementById('LeftColMenu').clientHeight;
	if ( (src_Height-menu_Height-32) > myElementStyle.height ) {
		myElementStyle.height=(src_Height-menu_Height-32)+"px";
	}
}

