In the example below the string concatenation operator (&) is used to add a newline after the contents of the variable x.
<SCRIPT LANGUAGE="VBScript"> <!-- Dim x For x = 0 to 10 document.write x & "<BR>" Next --> </SCRIPT>