Hi,
Use the following code to get filed value in your form,
Vb Script:
Dim X
X = XDocument.DOM.selectSingleNode("Xpath of field").text
JScript:
var X;
X = XDocument.DOM.selectSingleNode("Xpath of field").text;

Signature
k.Ramana Reddy
http://www.GGKtech.com
> I am using a very basic button script to send the form directly in the email
> versus sending it as an attachment. Here is the simple code I'm using.
[quoted text clipped - 21 lines]
>
> Thank You for any assistance offered.