js6.htm SOURCE
This is text field t2. This will be the output field.
These buttons will display F(t1) in t2. F = name of the button.
There is no other <SCRIPT>.
<INPUT TYPE=button NAME="SQRT" VALUE="SQRT" onClick="document.f1.t2.value=Math.sqrt(document.f1.t1.value)"> <INPUT TYPE=button NAME="SIN" VALUE="SIN" onClick="document.f1.t2.value=Math.sin(document.f1.t1.value)"> <INPUT TYPE=button NAME="EXP" VALUE="EXP" onClick="document.f1.t2.value=Math.exp(document.f1.t1.value)">