function resizeonload(){ 

var right = document.getElementById('right'); 
var conth = document.getElementById('cont').offsetHeight; 
var righth = document.getElementById('right').offsetHeight; 
if (!(righth > conth )){
		right.style.height= (conth -4) + 'px';
}

} 




