In inc_code.asp change
<SCRIPT LANGUAGE="JavaScript">
helpstat = false;
stprompt = false;
basic = true;
function thelp(swtch){
To
<SCRIPT LANGUAGE="JavaScript">
helpstat = false;
stprompt = true;
basic = false;
function thelp(swtch){
And post.asp line EDIT - 966 apporx more like line 861, somewhere round there 
this
<select name="font" onChange="thelp(this.options[this.selectedIndex].value)">
<option value="1">Help </option>
<option value="2">Prompt </option>
<option selected value="0">Basic </option>
</select>
To this
<select name="font" onChange="thelp(this.options[this.selectedIndex].value)">
<option value="1">Help </option>
<option selected value="2">Prompt </option>
<option value="0">Basic </option>
</select>
Thats it i think