// ADD BROWSER-SPECIFIC STYLESHEET
// Add a stylesheet that is better suited for Netscape 4 browsers, etc., since they can not handle CSS2 properly

function chgCSS() {

//alert(agt);

 if (ns4) {
 	document.write('<link href="../stylesheets/nn4.css" type="text/css" rel="stylesheet" media="all" />');
	}
 else {
 	document.write('<link href="../stylesheets/globalstyle.css" type="text/css" rel="stylesheet" media="all" />');
 	if (ie5) {
 		document.write('<link href="../stylesheets/ie5.css" type="text/css" rel="stylesheet" media="all" />');
		}
	}
}
