//window.onresize = findWindowDim;
function findWindowDim()
{
	var featureOffset=13; // cheater value to line up columns
	var footerspace= 5; //footerspace adds white space from the content to the footer
	var featuretop = 24; //featuretop accounts for the spacing  at the top of the feature pain
	var featurebottom = 0; //featurebottom accounts for the spacing  at the bottom of the feature pain
	var contentHeight = document.getElementById('contentcol').offsetHeight+20;
	var headerHeight = document.getElementById('header').offsetHeight;
	var footerHeight = document.getElementById('footer').offsetHeight;
	var mastheadHeight = document.getElementById('topmenu').offsetHeight+document.getElementById('header').offsetHeight;
	var objFooter = document.getElementById('footer');
	var objSite = document.getElementById('site');
	height = contentHeight + mastheadHeight + footerHeight + footerspace + featureOffset;
	objSite.style.height = height+'px';
	 
	footerTop = contentHeight + mastheadHeight + footerspace;
	footerTopPx = footerTop+"px";
	objFooter.style.top = footerTopPx;
}
