/* 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() {
	alert ("seth");
    var maxH = Math.max(document.getElementById('newsLeftColumn').offsetHeight,document.getElementById('newsRightColumn').offsetHeight);
    document.getElementById('newsLeftColumn').style.height=maxH+'px';
    document.getElementById('newsRightColumn').style.height=maxH+'px';
  }

window.onload=setH;
