function tamanhoJanelaBrowserW(){
    return window.innerWidth != null? window.innerWidth: 
document.documentElement && document.documentElement.clientWidth ?       
            document.documentElement.clientWidth:document.body != null? 
document.body.clientWidth:null;	
}

function tamanhoJanelaBrowserH(){
    return window.innerHeight != null? window.innerHeight: 
document.documentElement && document.documentElement.clientHeight ?     
            document.documentElement.clientHeight:document.body != null? 
document.body.clientHeight:null;
	
}