There is only one real JavaScript statement here, namely |
document.writeln("textstring"); |
This statement outputs into current page the quoted text followed by a newline |
Note the rather peculiar way we "hide" JavaScript from browsers that don't understand it by inserting a conventional HTML comment: |
<SCRIPT LANGUAGE="JavaScript"> |
<!-- a comment to hide JavaScript from old browsers |
// Insert JavaScript statements here |
// end script hiding --> |
</SCRIPT> |
Depending on your needs, JavaScript may be written in <HEAD> or <BODY> section of HTML document |