window.onload = function()
{
	corrigirIncompatibilidades();
}

function corrigirIncompatibilidades(){
	if (!navigator.userAgent || !document.getElementById)
		return;
	
	agent = navigator.userAgent;
	
	if(agent.match('Macintosh')){
			if(agent.match('Safari') || agent.match('Opera')){
				document.getElementById('texto_resumo').style.height="200px";
				document.getElementById('texto').style.height="290px";
			}
		}
	if(agent.match('Windows')){
			if(agent.match('Chrome') || agent.match('Opera')){
				document.getElementById('texto_resumo').style.height="200px";
				document.getElementById('texto').style.height="290px";
			}
		}
}
