function RedimensionaMenu()
{
	var objDivMiolo = document.getElementById('divArtigoPrincipal');
	var objDivMenu = document.getElementById('divMenuLatPrincipal');
	if (objDivMiolo != null)
	{
		/*alert(objDivMiolo.style.height);
		alert(objDivMenu.style.height);		*/
	}
}

function VerificarResolucao()
{
	var largura = screen.width;
	var altura = screen.height;	
	
	var objDiv = document.getElementById('divBannerSeguranca');
	if (objDiv != null)
	{
		if (largura > 800 && altura > 600)
		{
			objDiv.style.display = 'inline';
		}
		else
		{
			objDiv.style.display = 'none';
		}
	}
	
}