function equilibrar2Columnas(a,b){
	var mx=Math.max(
		document.getElementById(a).offsetHeight,
		document.getElementById(b).offsetHeight
	);
	document.getElementById(a).style.height=
	document.getElementById(b).style.height=mx+'px';
}
onload=function(){
	//configurar con ids de columnas a equilibrar:
	equilibrar2Columnas('izquierda','derecha');
}

