<!-- this javascript detects the browser and selects appropriate stylesheets -->

	var ie4, ns4;
	// detect browser type
	ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
	ns4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4 ));
	//choose correct stylesheet for browser
	if (ie4){
	 //document.write('<link rel=stylesheet type="text/css" href="styles/dynamic-ie.css">');
	}
	else {
	//document.write('<link rel=stylesheet type="text/css" href="styles/dynamic-ns.css">'); 
	}
