Assistance with font issue in form

Hello!

I am in Flash 8 and have a recycled form which I am submitting to an .asp form. Every time I submit the input information, it submits it but kicks back an error. The error seems to be that the .asp form is also reading the font properties of each input field, causing an error.

Below is the code in my form:

on (release) {
if (Name.length<1) {
message = “Please enter your entire name.”;
} else {
if (Company.length<1) {
message = “Please enter your company name.”;
} else {
if (Email.indexOf("@")<=0 || Email.indexOf(".")<=2 || Email.length<1) {
message = “Please enter valid email address.”;
} else {
if (Phone.length<1) {
message = “Please enter your phone number.”;
} else {
if (Attend.length<1) {
message = “Please choose on option for your attendance status.”;
} else {
message = “Thank you. Your RSVP has been submitted.”;
getURL(“http://www.scalesadvertising.com/draft/08_Golf_invite/register1.asp”, _self, “GET”);
}
}
}
}
}
}

here is the error…

[FONT=Arial][SIZE=2]Microsoft OLE DB Provider for ODBC Drivers[/SIZE][/FONT] [FONT=Arial][SIZE=2]error ‘80040e57’[/SIZE][/FONT]
[FONT=Arial][SIZE=2][Microsoft][ODBC SQL Server Driver][SQL Server]String or binary data would be truncated.

Thank you for any input!!!
[/SIZE][/FONT]