If you are using the SpellCheck button on your page, change the button code to:
<INPUT TYPE="BUTTON" VALUE="Spell Check" onclick=" FCH_CheckFormTextControls('INPUTCONTROLNAMESLIST','LANGUAGE', document.location.protocol + '//' +
document.location.host + '/CGIBIN/sproxy.cgi');">
If you are using a link, change the link code to:
<a href="javascript: FCH_CheckFormTextControls('INPUTCONTROLNAMESLIST', 'LANGUAGE',
document.location.protocol + '//' + document.location.host + '/CGIBIN/sproxy.cgi' );">SpellCheck</a>
Note: LANGUAGE and CGIBIN parameters must
be changed, as described in http://www.spellchecker.net/support/textbox.htm
INPUTCONTROLNAMESLIST determines which text box(es) need to be checked and updated. This parameter must be changed to contain a list of all input controls to be checked. Input control names must be separated by commas. If this parameter is empty (equal to ''), all text controls will be checked.
For example, in the form below, the INPUTCONTROLNAMESLIST parameter should be replaced with 'txt_to,txt_from,ta_message' to check all three text boxes:
<form action=”/somewhere/somescript.cgi”>
<input type=text name=”txt_to” size=30><br>
<input type=text name=”txt_from” size=30><br>
<textarea name=”ta_message” rows=5 cols=40></textarea><br>
<input type=submit>
</form>