function windowHeight(){
	var alto= 0;
	if( typeof( window.innerWidth ) == 'number' ) {
		alto= window.innerHeight;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		alto= document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		alto= document.body.clientHeight;
	}
	return alto;
}

function fillTheScreen(){
	winH = windowHeight(); //This returns the screen heigth
	heightNeeded=winH-24; //We need to substract the footer height
	if( typeof( window.innerWidth ) != 'number' ) { //Explorer doesn't recognize minHeight
		document.getElementById('leftContainer').style.height=heightNeeded+'px'; //So, we use height (and explroer bug)
	}
	document.getElementById('leftContainer').style.minHeight=heightNeeded+'px'; //For every other browser, we use minHeight
}

