/* This script is intended to identify the Browser Application (ie. Netscape/IE) and set thestylesheet file accordingly.  It will set one of two files named "microsoftstyle.css" or "netscapestyle.css".  */function setBrowserStyle(xsPath) {    var agt		= navigator.userAgent.toLowerCase();	var major 	= parseInt(navigator.appVersion);	var win32 	= ( (major >= 4) && (navigator.platform == "Win32") ) || 					(agt.indexOf("win32")!=-1) || 					(agt.indexOf("32bit")!=-1);    var mac    	= (agt.indexOf("mac")!=-1);	var browser = navigator.appName;		if (browser == "Netscape" && major < 6 && !win32) {		vsFileName = "macNN4style.css";	} else {		vsFileName = "microsoftstyle.css";	}		document.write("<LINK REL='Stylesheet' HREF=\"" + xsPath + vsFileName + "\">");}
