// Set up style sheets to be used from root of website.style = new Array();style['ie'] = "css/stat_pc_ie.css";style['ns'] = "css/stat_pc_ns.css";style['macns'] = "css/stat_mac_ns.css";style['macie'] = "css/stat_mac_ie.css";//////////////////////////////////////////////////		Style Sheet Selector/////////////////////////////////////////////////	Do Not Alter anything below here.....////////////////////////////////////////////////var stylesheet;if ((navigator.appName == "Netscape") && (navigator.appVersion.indexOf("Mac") != -1)) {	stylesheet = style['macns'];}else if ((navigator.appName == "Microsoft Internet Explorer") && (navigator.appVersion.indexOf("Mac") != -1)) {	stylesheet = style['macie'];}else if ((navigator.appName == "Microsoft Internet Explorer")){	stylesheet = style['ie'];}else if (navigator.appName == "Netscape"){	stylesheet = style['ns'];}else{stylesheet = style['ns'];}var path = "";if (location.href.indexOf("html/") != -1){	path = "../";}if (stylesheet){	document.write('<LINK REL=stylesheet HREF="'+path+stylesheet+'" TYPE="text/css">');}