<!--
function SendMail() {
	var address = "mailto:";
	address += "ChapelSquare";
	address += "@";
	address += "muccillo";
	address += ".";
	address += "com";
	window.location.href = address;
} 

function setColHeight() {

	var rightcol = document.getElementById('rightcol');
	var maincol = document.getElementById('maincol');
	if (rightcol != null && maincol != null)
	{
		if ((rightcol.offsetHeight-160) > maincol.offsetHeight)
		{
			maincol.style.height = (rightcol.offsetHeight-160) + 'px';
		}
	}
}
-->