function fixH() 
{ 
var lh=document.getElementById('Linkerkant').offsetHeight; 
var rh=document.getElementById('Inhoud').offsetHeight; 
document.getElementById('Inhoud').style.height=(lh>rh)? lh+"px" : rh+"px"; 
document.getElementById('Linkerkant').style.height=(rh>lh)? rh+"px" : lh+"px"; 
} 