//INCLUIR LOGO APÓS "<body>";

function detectAgent(){	
	if (/MSIE (\d+\.\d+);/.test(navigator.userAgent))
	{ //test for MSIE x.x;
		var ieversion=new Number(RegExp.$1); // capture x.x portion and store as a number
		if (ieversion>=8){
			//document.write("You're using IE8 or above");
		}
		else if (ieversion>=7){
			//document.write("You're using IE7.x");
		}
		else if (ieversion>=6){
			//document.write("You're using IE6.x");
			showNavAlert();
		}
		else if (ieversion>=5){
			//document.write("You're using IE5.x");
			showNavAlert();
		}
	
	}
	else
	{
		//document.write("n/a");
	}
}

function showNavAlert(){
	document.write('<div id="alertaIE6" style="height:14px;background:#FFFF99; text-align:center; padding:4px;font-family:arial;font-size:12px;border:1px solid #FFCC00;color:#000000">');
	document.write('<div onclick="fechAlerta();" style="width:20px;height:20px;background:url(http://arquivos.equipesmt.com.br/_img/close.png) no-repeat;float:right;cursor:pointer"></div>');
	document.write('<b>ATENÇÃO:</b> você está utilizando <span style="color:red">Internet Explorer 6</span>, o que pode comprometer a navegação. Utilize <a style="color:blue" href="http://br.mozdev.org/firefox/download.html">Firefox</a>, <a style="color:blue" href="http://www.google.com/chrome">Chrome</a> ou <a style="color:blue" href="http://www.microsoft.com/brasil/windows/internet-explorer/default.aspx">Internet Explorer 8</a>.');
	document.write('</div>');
}
function fechAlerta(){
	document.getElementById('alertaIE6').style.display = "none";
}
detectAgent();
