<SCRIPT>...</SCRIPT>
The <SCRIPT> tag is used to include JavaScript within an HTML document. As
a rule, the <SCRIPT> tag should be placed between the <HEAD> and </HEAD>
tags unless you are using an inline <SCRIPT> tag.
Web browsers will attempt to treat your JavaScript as part of the web page
unless the
<!-- comment --> tag is used. Doing this will ensure that non-JavaScript
aware browsers can display you page correctly, if not make it work
properly. Also, the // symbol should be used at the start of a line.
Attributes:
Usage:
<HTML>
<HEAD>
<TITLE>Test Script</TITLE>
<SCRIPT LANGUAGE="JavaScript">
<!--Use the start of a comment tag to hide the JavaScript code
// Your JavaScript code goes here
// close the comment tag on the line immediately before the </SCRIPT> tag
-->
</SCRIPT>
</HEAD>
<BODY>
Your Web document goes here
</BODY>
</HTML>