// Browser Detection For CSS
browser = navigator.appName;
version = parseInt(navigator.appVersion);
HM_DOM = (document.getElementById) ? true : false;
	HM_NS4 = (document.layers) ? true : false;
	HM_NS4old = (HM_NS4 && (parseFloat(navigator.appVersion) < 4.02));
	HM_IE = (document.all) ? true : false;
	HM_IE4 = HM_IE && !HM_DOM;
	HM_Mac = (navigator.appVersion.indexOf("Mac") != -1);
	HM_Unix = (navigator.appVersion.indexOf("X11") != -1);
	HM_IE4M = HM_IE4 && HM_Mac;
	HM_IsMenu = (HM_DOM || (HM_NS4 && !HM_NS4old) || (HM_IE && !HM_IE4M));
CssPath = '<link rel="stylesheet" type="text/css" href="css/'; 

if (browser.indexOf("Explorer") >= 0) {
	document.write(CssPath + 'ar.css">');
}

if ((browser.indexOf("Netscape") >= 0) && 
   (navigator.appVersion.indexOf("5.") >= 0) && (HM_NS4 == false) && (HM_NS4old == false))

 {
	document.write(CssPath + 'ar.css">'); 
}

if (HM_NS4 == true || HM_NS4old == true)
{
	document.write(CssPath + 'nsar.css">'); 
}

