This text is plain.

<SCRIPT LANGUAGE="JavaScript">

document.write(navigator.appName + "<BR>");
document.write(navigator.appVersion + "<BR>");
document.write(navigator.userAgent + "<BR>");

var example = "An Example";

document.write("<BR>" + example + " of how to use concatenation <BR>");
document.write("<BR>", example, " of another way to use \"concatenation\"", "<BR>");

// -- OR --

// document.write('<BR>', example, ' of another way to use "concatenation"', '<BR>');

</SCRIPT>

<BODY>

This text is plain.<BR>
<B>

<SCRIPT>

document.write("This text is bold.</B>");

</SCRIPT>