function onl() {
	var footer = document.getElementById('footer');
	footer.style.display = 'block';
}
function changeBg() {
	document.getElementsByTagName("body")[0].style.backgroundColor = "#000000";
}
function pss() {
	onl();
	changeBg();	
}
