function preSubmit()
{
	dsForm = document.drystorf;
	fText  = "Customer Name: " + dsForm.name.value + "\n";
	fText += "Address: " + dsForm.address.value + "\n";
	fText += "City: " + dsForm.city.value + "\n";
	fText += "State: " + dsForm.state.value + "\n";
	fText += "ZIP: " + dsForm.zip.value + "\n";
	fText += "Phone: " + dsForm.phone.value + "\n";
	fText += "Fax: " + dsForm.fax.value + "\n";
        fText += "e-Mail: " + dsForm.email.value + "\n";
	fText += "\n";
        fText += "Storage for (months): " + dsForm.storhowl.value + "\n";
 	fText += "Storage from: " + dsForm.storstaf.value + "\n";
 	fText += "Storage to: " + dsForm.storto.value + "\n";
	fText += "\n";
 	fText += "Boat Make: " + dsForm.make.value + "\n";
 	fText += "Year: " + dsForm.year.value + "\n";
        fText += "Model: " + dsForm.model.value + "\n";
        fText += "Type: " + dsForm.type.value + "\n";
        fText += "Beam: " + dsForm.beam.value + "\n";
 	fText += "Height: " + dsForm.height.value + "\n";
        if (!(dsForm.r1[0].checked) && !(dsForm.r1[1].checked)) {
              fText += "Customer have not specified if a T-Top is present\n"
        }
        if (dsForm.r1[0].checked) {
              fText += "Boat has a T-Top\n";
        }

        if (dsForm.r1[1].checked) {
              fText += "Boat does NOT have a T-Top\n";
        }

        if (!(dsForm.r2[0].checked) && !(dsForm.r2[1].checked)) {
              fText += "Customer have not specified if an Arch is present\n"
        }

        if (dsForm.r2[0].checked) {
              fText += "Boat has an Arch\n";
        }

        if (dsForm.r2[1].checked) {
              fText += "Boat does NOT have an Arch\n";
        }

        if (!(dsForm.r3[0].checked) && !(dsForm.r3[1].checked)) {
              fText += "Customer have not specified if a Bow Pulpit is present\n"
        }

        if (dsForm.r3[0].checked) {
              fText += "Boat has a Bow Pulpit\n";
        }

        if (dsForm.r3[1].checked) {
              fText += "Boat does NOT have a Bow Pulpit\n";
        }

        if (!(dsForm.r4[0].checked) && !(dsForm.r4[1].checked)) {
              fText += "Customer have not specified if a Swim Platform is present\n"
        }

        if (dsForm.r4[0].checked) {
              fText += "Boat has a Swim Platform\n";
        }

        if (dsForm.r4[1].checked) {
              fText += "Boat does NOT have a Swim Platform\n";
        }

        fText += "Boat LOA: " + dsForm.loa.value + "\n";
        
	fText += "\n";

        if (!(dsForm.r5[0].checked) && !(dsForm.r5[1].checked) && !(dsForm.r5[2].checked) && !(dsForm.r5[3].checked)) {
              fText += "Type of engine(s) on the boat: UNSPECIFIED\n"
        }

        if (dsForm.r5[0].checked) {
              fText += "Boat has an Inboard engine\n";
        }

        if (dsForm.r5[1].checked) {
              fText += "Boat has an In/Outboard engine\n";
        }

        if (dsForm.r5[2].checked) {
              fText += "Boat has an Outboard engine\n";
        }

        if (dsForm.r5[3].checked) {
              fText += "Boat has an Outboard engine on BRACKETS\n";
        }

        fText += "Engine(s) Make: " + dsForm.engmake.value + "\n";

        if (!(dsForm.r7[0].checked) && !(dsForm.r7[1].checked) && !(dsForm.r7[2].checked)) {
              fText += "Number of Engine(s): UNSPECIFIED\n"
        }

        if (dsForm.r7[0].checked) {
              fText += "Number of Engine(s): One\n";
        }

        if (dsForm.r7[1].checked) {
              fText += "Number of Engine(s): Two\n";
        }

        if (dsForm.r7[2].checked) {
              fText += "Number of Engine(s): Three\n";
        }

	fText += "\n";

        if (!(dsForm.r8[0].checked) && !(dsForm.r8[1].checked)) {
              fText += "Customer have not specified if there is a trailer to store\n"
        }

        if (dsForm.r8[0].checked) {
              fText += "Customer has a trailer to store with us\n";
        }

        if (dsForm.r8[1].checked) {
              fText += "Customer does NOT have a trailer to store with us\n";
        }

        fText += "Trailer Length: " + dsForm.traillen.value + "\n";
        fText += "Trailer Width: " + dsForm.trailwid.value + "\n";

	fText += "\n";

	fText += "Customer Comments: " + dsForm.addcom.value + "\n";

	dsForm.formBody.value = fText;

	return true;
}
