var value = "";
if ((navigator.appVersion.indexOf("Mac")!=-1) &&(navigator.appVersion.indexOf("MSIE")!=-1) ) {
	value ="mac-style1.css";
} else if ((navigator.appVersion.indexOf("Mac")!=-1) && (navigator.appVersion.indexOf("MSIE")==-1)) {
	value ="mac-ne-style1.css";

} else if ((navigator.appName == "Opera")) {
	value ="style1.css";

} else if ((navigator.appVersion.indexOf("MSIE")==-1) && (navigator.userAgent.indexOf("Gecko")==-1)) {
	value ="ne-style1.css";
} else {
	value ="style1.css";
}

if (value) {
	document.write('<link rel=\"stylesheet\" type=text/css href=\"' + cssPath + '/' + value + '\" />');
}

if (navigator.appName == 'Netscape') {
	document.write('<link rel=\"stylesheet\" type=text/css href=\"' + cssPath + '/' + 'ne-style1.css\" />');
}

// alert(value);
 //alert(navigator.appName);
