function footertoggle() {
	footobj = document.getElementById('footer');
	bodyobj = document.getElementById('body');
	if(footobj.className == 'footopen') {
		footobj.className = 'footclose';
		footobj.style.display = 'none';
		bodyobj.style.paddingBottom = '0';
	} else {
		footobj.className = 'footopen';
		footobj.style.display = '';
		bodyobj.style.paddingBottom = '6em';
	}
}