// verifica browser
var ns4 = (document.layers) ? 1 : 0;
var ie4 = (document.all) ? 1 : 0;
var ns6 = (document.getElementById && !document.all) ? 1 : 0;

// Dimenção do Browser 
function winWidth(){
   return (ns4||ns6) ? window.innerWidth : document.body.clientWidth;
}
//desabilita conteudo extra
function showHideConteudoExtra(){
	//se for acima de 800 x 600 retorna true
		if (winWidth()>=972){
			return true			
		}else{
			return false
		}
}
//fim função showhideconteudoextra()
// conteudo extra