	UserAgent = navigator.userAgent.toLowerCase(); 
	//var isGecko = (UserAgent.indexOf('gecko') !== -1) ? true : false;
	var isGecko = (!document.all && !window.opera && document.getElementById) ? true : false;
	var isOpera = (window.opera) ? true : false;
	var isIE = (document.all && !window.opera) ? true : false;
	var isIE6 = (isIE && document.createAttribute && !window.XMLHttpRequest) ? true : false;
	var isIE7 = (isIE && window.XMLHttpRequest) ? true : false; 