Scary, isn't it. Actually, it's not so scary if you know how it works. This simple little script just puts down the name of the browser that's using the page and the program the browser runs on, which both you can find if you put about: in the location box. This is a nice little edition to add to your page in a number of curcumstances, but especially when you specify on your page what browser you used to edit your page.
The source..


<center>
<script language="Javascript">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

document.write("You're using: <b>"+navigator.appName+" "+navigator.appVersion+"</b>");

//-->
</script>
</center>

Main Page