// JavaScript Document
function checaLayout(){
	document.getElementById('back_baixo').style.height = (window.innerHeight - 537)+'px';

}

window.onresize = function(){
	if ((window.innerHeight - 537) >= 10){
		document.getElementById('back_baixo').style.height = (window.innerHeight - 537)+'px';
	}
}
