Student Reviewing Add Another Parameter Into Form Teacher

On A Final Note     In regards to reconfiguring either the external.js file or if you have opted to use the traditional copy and paste method. Below (left side) is the <HEAD> section that needs to be reconfigured to add more parameters into the form. The (right side) are the reconfigurations needed in the <BODY> section to reflect the changes made within the <HEAD> section. It is quite simple to modify and add more sections to be copied to. See below on where and howto.

For Your Information For your Information:     You cannot make one reconfiguration without making the other. In other words, if you reconfigure the <BODY> section and "Not" the <HEAD> section, it will "Not" work or vice versa. Once compliments the other so to speak.

<!------ Reconfigured <HEAD> Section ------>

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Will Bontrager :: http://www.willmaster.com/ */

function FillBilling(f) {
  if(f.billingtoo.checked == true) {
    f.billingname.value = f.shippingname.value;
     f.billingcity.value = f.shippingcity.value;
    f.billingphone.value = f.shippingphone.value;
    /* If more fields are used, just expand the parameters
        above to include the additional fields. */
  }
}

<!------ Reconfigured <BODY> Section ------>

<form>
Shipping Name: <input type="text" name="shippingname">
Shipping City: <input type="text" name="shippingcity">
Shipping Phone: <input type="text" name="shippingphone">
<input type="checkbox" name="billingtoo" onclick="FillBilling(this.form)"> Copy to billing fields.

Billing Name: <input type="text" name="billingname">
Billing City:<input type="text" name="billingcity">
Billing Phone: <input type="text" name="billingphone">
<input type="submit">
</form>

<!---- Above Will Look Like The Below ---->

Shipping Name:      
Shipping City:          
Shipping Phone:      
Copy to billing fields.
Billing Name:  
Billing City:      
Billing Phone:  

Copyright © Consigliere Ltd., All Rights Reserved. 2001-