var sec;

function SetMenu(id)
{
	var obj = document.getElementById(id);
	if (obj)
	{
		obj.className = 'onit';
	}
}

function AdjustHeight(id)
{
	var obj = document.getElementById(id);
	if (obj)
	{
		origheight = obj.offsetHeight;
		obj.style.height = (origheight - 150)+"px";
	}
}

//Format Email Addresses
function FormatE(name, domain, text)
{
	var strE = "<";
	strE += "a";
	strE += " href=";
	strE += "mail";
	strE += "to:";
	strE += name + "@" + domain + ">" + text + "</a>";
	document.write(strE);
}	

window.onload = function()
{
	
	AdjustHeight('contentholder');
	SetMenu(sec);
}