function fixH(one,two,three,four) {

	if (document.getElementById(one)) {
	   var lh=document.getElementById(one).offsetHeight;
	   var rh=document.getElementById(two).offsetHeight;
	   var nh = Math.max(lh, rh); 
	   document.getElementById(one).style.height=(nh-22)+"px";
	   document.getElementById(two).style.height=(nh)+"px";
/*
	   if (document.getElementById(four))
	      document.getElementById(three).style.height=(nh-rh1)-5+"px";
	   }
	   if(document.getElementById('spacer')){
	      document.getElementById('spacer').style.height=nh-150+"px";
	   }
	   if(document.getElementById('spacer1')){
	      document.getElementById('spacer1').style.height=nh-166+"px";
           }*/
	}
}
		
window.onload=function(){
		fixH('clients','looking','right','right1');
}
