<!--
function brVersionCss(winIe6, winIe7, winIe8, chromeCss, OtherCss, MacCss){
	var strAppVer = navigator.appVersion;
	var strAppNM  = navigator.appName;
	
	var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
	var isChrome = (navigator.appVersion.indexOf("Chrome") != -1) ? true : false;
	var isWin = (navigator.appVersion.indexOf("Windows") != -1) ? true : false;
	var brVer = getBrowserVersion();
	
	function getBrowserVersion() {
		appN   = navigator.appName.toUpperCase();
		version = 0;
		appVer  = navigator.appVersion;
		if (appN.indexOf("NETSCAPE") >= 0) {
			s = appVer.indexOf(" ",0);
			version = eval(appVer.substring(0,s));
			if (version >= 5) version++;
		}
		if (appN.indexOf("MICROSOFT") >= 0) {
			appVer  = navigator.userAgent;
			s = appVer.indexOf("MSIE ",0) + 5;
			e = appVer.indexOf(";",s);
			version = eval(appVer.substring(s,e));
		}
		return version;	
	}
	
	//******[ css switch ]******
	//Win
	if(isWin){
		//Chrome
		if(isChrome){
			document.write(chromeCss);
		}
		//IE 6
		else if(isIE && brVer == 6){
			document.write(winIe6);
			
		//IE 7
		}else if(isIE && brVer == 7){
			document.write(winIe7);
			
		//IE 8
		}else if(isIE && brVer == 8){
			document.write(winIe8);
			
		//Other Browser
		}else{
			document.write(OtherCss);
		}
	//Mac
	}else{
		document.write(MacCss);
	}
}
//-->


<!--
brVersionCss(
//Win IE 6
'<link href="css/ie6.css" rel="stylesheet" type="text/css" />',
//Win IE 7
'<link href="css/ie7.css" rel="stylesheet" type="text/css" />',
//Win IE 8
'<link href="css/ie8.css" rel="stylesheet" type="text/css" />',
//Chrome
'<link href="css/chrome.css" rel="stylesheet" type="text/css" />',
//Othre Browser
'<link href="css/other.css" rel="stylesheet" type="text/css" />',
//Mac Browser
'<link href="css/mac.css" rel="stylesheet" type="text/css" />'
);
//-->
