Hi,
Here is small javascript that i aggregated using various sources from
web.
Please comment if you find it useful.
http://sandy007smarty.seo.iitm.ac.in/2006/09/26/javascript-tutorial/
Also do report bugs/suggestions.
You should rather submit this to the JavaScript newsgroup.
comp.lang.javascript
However, be prepared for criticism, the group is harsh.
A few general remarks:
1) You should write all HTML tags in small caps. Big caps are not XML
conform, and more and more users write XML conform HTML code nowadays.
2) <quote>
Another point to recognize is that if a browser does not understand the
<SCRIPT> tag, it will skip over it, and the text that is between the two
tags (your code, basically) will appear on the screen as ordinary text.
Since you want to create an HTML page that is viewable on all browsers,
you would want to prevent this from happening.
</quote>
This was true many years ago, but is now totally obsolete. There are no
browsers on the market anymore which show the content of a <script> tag.
I would rather modify the section to tell the user that they should
not use <!-- --> to "hide" script code.
I unfortunately don't have time to check your page more, but I am sure
that people on comp.lang.javascript will provide more comments.
Greetings,
Laurent