/** *  Client Stylesheet Chooser * *  stylesheet.js * *  michael.sheridan@razorfish.com *  August 22, 2001 * *  This file detects the clients browser and writes the   *  appropriate stylesheet reference. * */   /*日本仕様スタイルシート用JavaScript暫定版*/ // Check Which Client the User is Using	client = navigator.appName;	ie = "Microsoft Internet Explorer";	ns = "Netscape";// Write the Stylesheet Reference		if (client == ns) {		document.writeln('<link rel="stylesheet" type="text/css" href="/global/JP/sitewide_assets/css/stylesheet_ns.css" title="master">');	} else {		document.write('<link rel="stylesheet" type="text/css" href="/global/JP/sitewide_assets/css/stylesheet.css" title="master">');	} 	// EOF	