<SCRIPT
LANGUAGE=scripting language
</SCRIPT>
Specifies the inclusion of a script such as VBScript or JavaScript. The scripts themselves appear in the element's container. The end-tag is required.
Authors often enclose the scripts in the SCRIPT element within the comment tag (<!-- ... -->). This prevents browsers which do not recognize the SCRIPT element from displaying the scripts as plain text in the browser.
Example
<SCRIPT>
<SCRIPT language="VBScript">
'... Additional VBScript statements ...
</SCRIPT>
Comments: