// JavaScript Document

function matchHeight()
{
	var theleft = document.getElementById("info");
	var theright = document.getElementById("links");
	if(theleft.offsetHeight > theright.offsetHeight)
	{
		theright.style.height = theleft.offsetHeight+"px";
	}
	if(theleft.offsetHeight <= theright.offsetHeight)
	{
		theleft.style.height = theright.offsetHeight+"px";
	}
}

window.onload=function()
{
	if(document.getElementById)
	{
		matchHeight();
	}
}
