// JavaScript Document

function __windowOnLoad()
{
	h1 = document.getElementById('h_right').offsetHeight;
	h2 = document.getElementById('h_left').offsetHeight;
	
	if(h2 > h1)
	document.getElementById('h_right').style.height = (h2 + 165) + 'px';
		
	else
		document.getElementById('h_left').style.height = (h1 - 150) + 'px';
}

if (window.addEventListener) //DOM method for binding an event
	window.addEventListener("load", __windowOnLoad, false)
else if (window.attachEvent) //IE exclusive method for binding an event
	window.attachEvent("onload", __windowOnLoad)
else if (document.getElementById) //support older modern browsers
	window.onload=__windowOnLoad;
