 IE= null; //IE5+
 NS= null; // Mozilla 0.9.1+
 OPERA = null; // Opera 7
 IE55 = null;
 IE5 = null;
 IE6=null;
	
 ua = navigator.appName.toLowerCase();

 if(ua.indexOf('explorer')>-1 && document.getElementById && document.childNodes && !document.addEventListener) {IE=true;}
 if(ua.indexOf('netscape')>-1 && document.getElementById && document.childNodes && !document.all) {NS=true;}
 if(ua.indexOf('opera')>-1 && document.getElementById && document.childNodes) {OPERA=true;}

 if(!IE && !NS && !OPERA && document.addEventListener) {OPERA=true;} 
 
 ua = navigator.userAgent.toLowerCase();
 
 if(IE && ua.indexOf('5.5')>-1) {IE55=true;}
 if(IE && ua.indexOf('5.0')>-1) {IE5=true;}
 if(IE && !IE5 && !IE55) {IE6=true;}