Please, why does the first textarea work but the second not ??
<html>
<head>
<style type="text/css">
#txt {style="background-color:#F0F0F0; color:#0000FF; font-size:10pt;"}
</style>
</head>
<body>
<form>
<p>Area 1</p>
<TEXTAREA NAME="this1" COLS="40" ROWS="3" STYLE="background-color: #f0f0f0; color: #0000ff; font-size: 10pt;">
Some text here</textarea>
<p>Area 2</p>
<TEXTAREA ID="txt" NAME="this2" COLS="40" ROWS="3">
Some text here</textarea>
</form>
</body>
</html>