/*  PROGRAM TO PROVIDE INFO ON BROWSER, JAVASCRIPT AND THEN INFO ABOUT SYSTEM  */
/*   WHAT KIND OF BROWSER ARE THEY USING?    */
	if (navigator.appName == "Netscape") {
		document.write("You're running a Netscape browser")
	}
	else {
		if (navigator.appName == "Microsoft Internet Explorer") {
			document.write("You're running Internet Explorer")
		}
		else {
			document.write("You're not running Netscape or IE -- maybe AOL or ???")
		}
	}
	document.write("<BR>")
	document.write("<BR>")
	document.write("<U>The complete browser user agent is:</U>  " + (navigator.userAgent))
	document.write("<BR>")
	document.write("<BR>")  
	document.write("<U>The CPU class of your machine is:</U>  " + (navigator.cpuClass))
	document.write("<BR>")
	document.write("<BR>")
	document.write("<U>The User Profile of your machine is:</U>  " + (navigator.userProfile))
	document.write("<BR>")
	document.write("<BR>")
	document.write("<U>The platform of your machine is:</U>  " + (navigator.platform))
	document.write("<BR>")
	document.write("<BR>")
	

/*   CHECKING IF JAVA IS ENABLED   */
	document.write("Javascript is ")
	if (!navigator.javaEnabled()) {
	document.write("not ")
	}
	document.write("enabled on your system.")
	document.write("<BR>")

/*   CHECKING IF COOKIES ARE ENABLED   */
	document.write("Cookies are ")
	if (!navigator.javaEnabled()) {
	document.write("not ")
	}
	document.write("enabled on your system.")
	document.write("<BR>")
	document.write("<BR>")

/*  LIST ALL THE BROWSER PLUGINS ON THIS SYSTEM   */

if (navigator.plugins && navigator.plugins.length > 0) {
			document.write("<U>You have the following browser plugins: <TABLE CELLSPACING='4' CELLPADDING='4'>")
			document.write("<TR><TH BGCOLOR='#CCCCCC'>Name<\/TH><TH BGCOLOR='#CCCCCC'>Filename<\/TH><TH BGCOLOR='#CCCCCC'>Description<\/TH><\/TR>")

			for (i=0; i<navigator.plugins.length; i++) {
				thisPlugin = navigator.plugins[i]
				document.write("<TR VALIGN='TOP'><TD BGCOLOR='#CCCCCC'>" + thisPlugin.name)
				document.write("<\/TD><TD BGCOLOR='#CCCCCC'>" + thisPlugin.filename)
				document.write("<\/TD><TD BGCOLOR='#CCCCCC'>" + thisPlugin.description + "<\/TD><\/TR>")
			}
			document.write("<\/TABLE>")
		}
		else {
			document.write("Couldn't find any plugins for your browser")
		}
	document.write("<BR>")
	document.write("<BR>")

/*  						CLOSING	*/
	document.write("<center><font color=#660000>Thanks for using Tellme -- Use BACK to return to website")