// JavaScript Document

/* 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('leftbox').offsetHeight,document.getElementById('rightbox').offsetHeight);
    document.getElementById('leftbox').style.height=maxH+'px';
    document.getElementById('rightbox').style.height=maxH+'px';
  }

window.onload=setH;

