/* 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('maincol').offsetHeight,document.getElementById('leftcol').offsetHeight);
    document.getElementById('maincol').style.height=maxH+'px';
    document.getElementById('leftcol').style.height=maxH+10+'px';
  }

window.onload=setH;


