//Script to make the div heights match up.
<!--
var ColumnsDiv = 'ColumnTable';
var Target = 'FooterArea';
function adjustHeights(){
	if ( $("#Column1").height() > $("#Column2").height() ) {
		$("#Column2").height($("#Column1").height());
	} else {
		$("#Column1").height($("#Column2").height());
	}
/*	
	$("#Column1").height(
		$("#Column1").height() + (findTop(document.getElementById(Target)) - ($("#Column1").height() + findTop(document.getElementById('Column1'))))
	);
	$("#Column2").height(
		$("#Column2").height() + (findTop(document.getElementById(Target)) - ($("#Column2").height() + findTop(document.getElementById('Column2'))))
	);

	var columns = document.getElementById(ColumnsDiv).getElementsByTagName('div')
	for (i=0;i<columns.length;i++){
		if (columns[i].id.toLowerCase().indexOf('column') > -1){
			//alert(columns[i].clientHeight);
			//alert(findTop(document.getElementById(Target)) + " - (" + columns[i].clientHeight + " + " + findTop(columns[i]) + ")");
			columns[i].style.height = columns[i].clientHeight + (findTop(document.getElementById(Target)) - (columns[i].clientHeight + findTop(columns[i])));
			//alert(columns[i].clientHeight);
		}
	}
*/
}

function findTop(obj) {
	var curtop = 0;
	if (obj.offsetParent) {
		curtop = obj.offsetTop
		while (obj = obj.offsetParent) {
			curtop += obj.offsetTop
		}
	}
	return curtop;
}

function Start() {
	adjustHeights();
	document.body.onresize = adjustHeights;
	window.onresize = adjustHeights;
}

$(document).ready(function() {
	adjustHeights();
	document.body.onresize = adjustHeights;
	window.onresize = adjustHeights;
});

//-->
