	function ColLeft() {
	var d = document
	var col1 = d.getElementById('d0')
	var col2 = d.getElementById('d1')
	var result
	result = col1.style.height = col2.style.height = Math.max(col1.offsetHeight,col2.offsetHeight) + 'px'
	}