[Color=white]
function computeForm(form)
{
...
form.DMG.value = form.DMG.value
+ capFirst(str) + "\n";
}
<!-- done hiding from old browsers -->
</script>
</head>
<body onload=initLists()>
<h1>The Necrobiblicon</h1>
<p>A baleful resource for Gothic and/or
Lovecraftian horror and related warped
game settings.</p>
<p>After you've defeated the evil necromancer
what then? Why you, er...expropriate his belongings,
including his eeevil library. What's in those rows
of thick, dusty volumes you wonder? Probably some
fairly innocuous works on polishing wands or cleaning
pointy hats, but maybe a few other things as well...</p>
<form>
<input onclick="computeForm(this.form)"
type="button" value="Take one off the shelf">
<br>
<textarea name="DMG" rows="15" cols="75"></textarea>
<br>
</form>
</body>
</html>
[/Color]