/**
 *  Client Stylesheet Chooser
 *
 *  stylesheet.js
 *
 *  michael.sheridan@razorfish.com
 *  August 22, 2001
 *
 *  This file detects the clients browser and writes the  
 *  appropriate stylesheet reference.
 *
 */  
 
// 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="stylesheet_ns.css" title="master">');
	} else {
		document.write('<link rel="stylesheet" type="text/css" href="stylesheet.css" title="master">');
	} 
	
// EOF	


