// JavaScript Document
function equalColumns(){
	var l = document.getElementById('col_izquierda');
	var r = document.getElementById('col_central');
	var alt_l = l.offsetHeight + 100;
//	alert("Altura derecha: " +r.offsetHeight);
//	alert("Altura izquierda: " +l.offsetHeight + "\n altura modificada: " + alt_l);
	r.offsetHeight >= alt_l ? l.style.height = (r.offsetHeight - 116) + "px" : r.style.height = (l.offsetHeight + 105) + "px";
}

window.onload = function(){
//	equalColumns();
}
