/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Roy Marchand | http://www.expertsrt.com/ */
function setH() {
    var maxH = Math.max(document.getElementById('maincontent').offsetHeight,document.getElementById('sidecontent').offsetHeight);
    document.getElementById('maincontent').style.height=maxH+'px';
    document.getElementById('sidecontent').style.height=maxH+'px';
  }

window.onload=setH;

