Config={
	isIE:     		!!(window.attachEvent && !window.opera),
	isIE6:			(window.attachEvent && !window.XMLHttpRequest && !window.opera),
	isIE7:			(window.attachEvent && window.XMLHttpRequest && !window.opera),
	isGecko:  		(navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1),
	isChrome:		!!(navigator.userAgent.match('Chrome')),
	isWebKit: 		(navigator.userAgent.indexOf('AppleWebKit/') > -1),
	isOpera:  		!!(window.opera),
	isMobileSafari: !!(navigator.userAgent.match(/Apple.*Mobile.*Safari/))
};
myUtils={
	getBrowser:function(){
		for(b in Config){
			if(b == "isIE") continue;
			if(Config[b]) return b.substr(2,b.length-2);
		}
	}
};

if(myUtils.getBrowser() == "IE6"){
	window.onload = function(){
		document.body.className=(document.body.className.toString().length==0)?"IE6":" IE6";
	}
}