Ragazzi ho un problema con il footer.
Questo è il link:
Sito problema footer
Vorrei che lo sfondo blu arrivasse fino in fondo alla finestra del browser.
Questo il codice JS:
codice:
// JavaScript Document
function getWindowHeight() {
	var windowHeight=0;
	if (typeof(window.innerHeight)=='number') {
		windowHeight=window.innerHeight;
	}
	else {
		if (document.documentElement&&
			document.documentElement.clientHeight) {
			windowHeight=
			document.documentElement.clientHeight;
		}
		else {
			if (document.body&&document.body.clientHeight) {
				windowHeight=document.body.clientHeight;
			}
		}
	}
	return windowHeight;
}
function setFooter() {
	if (document.getElementById) {
		var windowHeight = getWindowHeight();
		if (windowHeight > 0) {
			var contentElement=document.getElementById('content');
			var contentHeight=document.getElementById('content').offsetHeight;
			if (windowHeight-(contentHeight)>=0) {
				contentElement.style.height=(windowHeight-contentHeight)+ 'px';
				contentElement.style.minHeight=(windowHeight-contentHeight) + 'px';
			}
		}
	}
}
Potete gentilmente aiutarmi??