Hi Christine, best way to get a quick answer is to paste the exact error you receive but anyways, the error that I get is
> Element PHONE_NIGHT is undefined in FORM. That means that form.phone_night does not exist, or, there is no form element with the name form.phone_night. A quick look at the html code for your form showed up this: <input name="Phone (Evening)" type="text" class="text" id="Phone (Evening)" style="width: 140px" size="4" /> The name of the input is wrong. Should be name="Phone_night". The CAUSE of an error is often not the line that the error output gives you, (the line number is only where the original error rears its head). Regards, Dominic -- Blog it up: http://fusion.dominicwatson.co.uk ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295964 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

