	// (c) 2000-2002 eResources (http://www.eresources.com)
	//
	// Browser Detection
	//
	
	// ---- Mac Platform
	isMac 	= (navigator.appVersion.indexOf("Mac")!=-1) ? true : false;
	IEmac 	= ((document.all)&&(isMac)) ? true : false;
	
	// ---- Netscape
	NS4 	= (document.layers) ? true : false;
	NS6 	= (!document.layers) && (navigator.userAgent.indexOf('Netscape')!=-1)?true:false;
	
	// ---- Internet Explorer
	IE4plus = (document.all) ? true : false;
	IE4 	= ((document.all)&&(navigator.appVersion.indexOf("MSIE 4.")!=-1)) ? true : false;
	IE5	= ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
	IE6 	= ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
	IE5plus = IE5 || IE6;
	IEPC	= IE4 || IE5plus;
	IE	= IEPC || IEmac;
	
	IEMajor = 0;
	if (IE4plus)
	{
		var start = navigator.appVersion.indexOf("MSIE");
		var end = navigator.appVersion.indexOf(".",start);
		IEMajor = parseInt(navigator.appVersion.substring(start+5,end));
		IE5plus = (IEMajor>=5) ? true : false;
	}
	
	