<center><h1>Browser Information</h1></center>
<script language="JavaScript">
document.write('<STRONG><FONT FACE="Arial, Helvetica, sans-serif">The application name of the browser is: </FONT></STRONG><CODE>' + navigator.appName + '</CODE><BR>');
document.write('<STRONG><FONT FACE="Arial, Helvetica, sans-serif">The version of the browser is: </FONT></STRONG><CODE>' + navigator.appVersion + '</CODE><BR>');
document.write('<STRONG><FONT FACE="Arial, Helvetica, sans-serif">The user agent of the browser is: </FONT></STRONG><CODE>' + navigator.userAgent + '</CODE>\n<P>');
if (navigator.plugins) {
	document.write('<STRONG><FONT FACE="Arial, Helvetica, sans-serif">The following Netscape plugins are installed in this browser:</FONT></STRONG><BR>');
	for (var i=0; i < navigator.plugins.length; i++) {
		document.write('&gt; <CODE>' + navigator.plugins[i].name + '</CODE><BR>');
	}
}
else {
	document.write('<STRONG><FONT FACE="Arial, Helvetica, sans-serif">If you were using Netscape 3.0 or later, you would see a list of installed plugins here.</FONT></STRONG>\n<P>')
}
</script>
