Other goodies & Java Script
Well rather than explaining the workings of the HTML and the java script found on this page, i'm just going to put full examples up for you to copy & paste (aren't i nice) :o)
First off I'm going to start off with this nice feature i use as thank you messages in my neopets shop! For some reason Yahoo Geocities pages doesn't allow this to work :o(
Its quite a simple script:
<body OnUnLoad="alert('Thanks for visiting');">
you can have as many alerts as you wish just change it to look like this:
<body OnUnLoad="alert('Thanks for visiting')
alert('Have a nice Day');">
There is only one problem with this, you cannot use words with aposrophies in, like can't.  because after the ( symbol in the script is an '   using words with apostrophies will confuse the script and stop it from working :o(
Java Scripts
Unfortunately Java Script does not work in neopets, but it is useful for things like Homepages!
<SCRIPT LANGUAGE="Javascript">
<!--
function click() {
if ((event.button==2) || (event.button==3)) {
alert("
Post Your Message Here!");
}
}
document.onmousedown=click; // make the click function an event for the page
file://-->
</SCRIPT>
Disable Right mouse click
If you use the above script don't forget to change the message in red! Write what ever message you like.

To see this feature work, right click on any of my other pages!
Html Help Home
Legal Notice:
Although the scripts on the this page are not copyrightable the PAGES are, this means you may freely copy the scritps, but if this page is taken in bulk it is breaking copyright laws. If this page is found anywhere else other than
www.oocities.org/surrounded_alone/HtmlHelpScript.html
legal action may be taken.
This page is copyright C. Mason 2001 ©
You can also have messages pop-up when the page is visited to do this change the <body OnUnLoad... bit to <body OnLoad....