Order Form Naming Convention

There are two forms, one for West of the Rockies and one for East of the Rockies. The naming conventions reflect the fact that they both use the same functions.

West of the Rockies:

pw1 = Price West (Item) 1 and 69.95 = the Item's Price
<
SELECT NAME="pw1" onChange="calculate(this, 69.95)">

tw1 = Total West (Item) 1
<
INPUT TYPE="text" NAME="tw1" VALUE>

totalw = Total West - Total for all the Items on the West Form
<
INPUT TYPE="text" NAME="totalw" VALUE>

East of the Rockies:

pe1 = Price East (Item) 1 and 72.95 = the Item's Price
<
SELECT NAME="pe1" onChange="calculate(this, 72.95)">

te1 = Total East (Item) 1
<
INPUT TYPE="text" NAME="te1" VALUE>

totale = Total East - Total for all the Items on the East Form
<
INPUT TYPE="text" NAME="totale" VALUE>