function filler(){
	var windowheight = window.innerHeight || document.documentElement.clientHeight || document.body.offsetHeight;
	var designheight = 789; 
	var mainheight = document.getElementById("mainareafull").offsetHeight;
	var mainbottom = document.getElementById("mainareafull").offsetTop + mainheight;
	var minmainheight = designheight - 276; //223px top+menubar original 276
	
	document.getElementById("footer").style.top = mainbottom + "px";
	
	document.getElementById("dropright").style.height = mainbottom + document.getElementById("footer").offsetHeight + "px";
	document.getElementById("dropleft").style.height = mainbottom + document.getElementById("footer").offsetHeight + "px";
	
	if(windowheight > 628)//need to lengthen things to reach the bottom of the screen
	{
		var windowdifference = windowheight - 628;
		//document.getElementById("mainarea").style.height = (document.getElementById("mainarea").offsetHeight + windowdifference) + "px";
		//document.getElementById("mainareabg").style.height = (document.getElementById("mainareabg").offsetHeight + windowdifference) + "px";
		//document.getElementById("dropright").style.height = (document.getElementById("dropright").offsetHeight + windowdifference) + "px";
		//document.getElementById("fillerspace").style.height = windowdifference + "px";
		//document.getElementById("footer").style.top = (windowheight - 59) + "px";
	}
	

}
