Hi Peter,
I don't know if you want to add a new blank line to the text the visitor is typing.If it's that way,this sould be work for you:
<html>
<head>
<title>BR PAGE</title>
<script language="JavaScript">
<!--
function writeBR()
{
key=event.keyCode;
if(key==13)
{
document.myform.textbox.value=document.myform.textbox.value+' ';
}
}
//-->
</script>
</head>
<body>
<form name="myform">
<textarea cols="20" rows="5" name="textbox" onKeyDown="writeBR()"></textarea>
<br>
<input type="submit" name="submit" value="Submit">
<input type="reset" name="reset" value="Reset">
</form>
</body>
</html>
If you want to specify the 'cols' attribute let's say to 20,then in the function you must add 20 blank spaces in the section:
document.myform.textbox.value=document.myform.textbox.value+' ';
(here you put 20 blank spaces if you have 20 cols in your text box).
I hope this helps.
Kindest Regards
Alexfusion