
var thestring;
var detect = navigator.userAgent.toLowerCase();
function getBrowser()
{
return;
	if (checkIt('msie'))
	{
		for (var i=0; i<document.styleSheets.length; i++)
			document.styleSheets[i].disabled=true;
		document.styleSheets[2].disabled=false;
	} 
}
function checkIt(string)
{
	var place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}