Hi jewel,
It depends of what you want (I can't figure out).
These 2 examples works in javascript:
first example (shows only <b>Hello</b>)
<script language=javascript>
var exp;
exp = 'your text';
exp = exp + '<br>';
exp = exp + '<xmp><b>Hello</b></xmp><br>';
exp = exp + 'continue text';
document.write(exp)
</script>
second example (shows all the javascript code)
<xmp>
<script language=javascript>
var exp
exp = 'your text'
exp = exp + '<br>'
exp = exp + '<b>Hello</b><br>'
exp = exp + 'continue text'
document.write(exp);
</script>
</xmp>
If this is not what you mean, just post more details.
Erik