// JavaScript Document
function WriteAddress(pt1, pt3, pt4, pt2, pt5) {
	document.write("<a href=\"mailto:");
	document.write(pt2);
	document.write(pt3);
	document.write(pt4);
	document.write("\" title=\"");
	document.write(pt5);
	document.write("\">");
	document.write(pt1);
	document.write("</a>");
}
function fixH(one,two)
{
	if (document.getElementById(one))
	{
		var lh=document.getElementById(one).offsetHeight;
		var rh=document.getElementById(two).offsetHeight;
		var nh = Math.max(lh, rh);
		document.getElementById(one).style.height=nh+"px";
		document.getElementById(two).style.height=nh+"px";
	}
}
window.onload = function ()
{
	fixH('sidebar1', 'mainContent');
}

function setHeight()
{
	try
	{
		var side = document.getElementById("sidebar1");
		var main = document.getElementById("mainContent");
		
		alert("Side: " + side.offsetHeight + "  - Main: " + main..offsetHeight);
		
		side.style.height = main.style.height;

		alert("Side: " +  + "  - Main: " + main.style.height);
	}
	catch(err)
	{
		alert(side);
		alert(err);
	}
}
