// JavaScript Document
function setH() {
    var maxH = Math.max(document.getElementById('contenido').offsetHeight,document.getElementById('publicidad').offsetHeight);
    document.getElementById('contenido').style.height=maxH+'px';
    document.getElementById('publicidad').style.height=maxH+'px';
  }
 
window.onload=setH;