//fix the height!

function onLoadHandler(){
		var h=window.document.getElementById('left').offsetHeight;
		var oldh=window.document.getElementById('rightMain').offsetHeight;
		if (oldh<h)
			document.getElementById('rightMain').style.height=h+'px';
	}
