t;script language="JavaScript">
<!--
function jsSendToAll()
{
document.MyForm.frmSendTo.Value = 'All';
}
//-->
</script>
<table border="1" width="100%">
<form id="MyForm" method="POST" >
<tr>
<td width="50%">
<input type="text" name="frmSendTo" size="20"><br>
<input type="submit" value="Submit" name="B1">
<input type="reset" value="Reset" name="B2">
</td>
<td width="50%">
<input type="checkbox" name="AllRecipients" value="ON"
OnClick="if(this.checked){jsSendToAll();}"> Send to
All Recipients
</tr>
</form>
</table>
</body>
I get an error each time I run this script and am not |