
var detect = navigator.userAgent.toLowerCase();
var browser,thestring;

function checaNavegador() {
	if(!checkIt('msie'))
	{
		alert('Para que todos os recursos deste site sejam utilizados perfeitamente \n é necessário Internet Explorer 6.0 ou superior');
	}
	
}

function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
} 