			function DisplayCorrectCss(CssFile)
			{
				DOM = (document.getElementById) ? true : false;
				NS4 = (document.layers) ? true : false;
				IE = (document.all) ? true : false;
				IE4 = IE && !DOM;
				Mac = (navigator.appVersion.indexOf("Mac") != -1);
				IE4M = IE4 && Mac;
				IsMenu = (DOM || NS4 || (IE4 && !IE4M));
				
				BrowserString = NS4 ? "NS4" : DOM ? "DOM" : "IE4"; //Test for NS4 and MAC (using same css) - All others use PC IE
				
//				if(NS4 || Mac || IE4M){
//					BrowserString = '<link rel="stylesheet" type="text/css" href="/css/' + CssFile + '_text_mac.css">\n<link rel="stylesheet" type="text/css" href="/css/' + CssFile + '_display_mac.css">';
//				}else{
					BrowserString = '<link rel="stylesheet" type="text/css" href="/css/' + CssFile + '_text.css">\n<link rel="stylesheet" type="text/css" href="/css/' + CssFile + '_display.css">';
//				}
//				alert ('testing use of global browser-type javascript');
				return BrowserString;
			}

