
function fixPosition() {
	if (document.getElementById) {
		var right = document.getElementById("rightCol");
		var left = document.getElementById("leftCol");
		left.style.height = right.offsetHeight + "px";
	}
}

window.onload = fixPosition;
window.onresize = fixPosition;