	client = navigator.appName;
	ie = "Microsoft Internet Explorer";
	ns = "Netscape";
	if (client == ns) {
		document.writeln('<link rel="stylesheet" type="text/css" href="style_ns.css">');
	} else {
		document.write('<link rel="stylesheet" type="text/css" href="style.css">');
	} 

