Component Form Data Gathering

Hey all, I’ve gone through the Tutes on forms and Components, and read the strings on them as well, but i’m still kinda stumped trying to get form working the way I’d like it to. I have two different sets of radio buttons from the component sets, and I’m trying to gather that data so it can be sent via a POST to a .asp page and e-mailed. When I get my e-mail back, the vars I defined for the radio buttons come back with : [object Object] and [type Function] as their values. I think there’s something I’m missing with how the string is concatinated , though i’m not sure what.

I’m using the code from the components tutorial on how to use radio buttons, and it currently looks like this:

// The display function
function radiocontact (component) {
contact = component.getValue() ;
trace ( contact ) ;
}
function tdsolution (component) {
tdsolution = component.getValue() ;
trace ( tdsolution ) ;
}
// We assign this function to the group
contact.setChangeHandler (“radiocontact”) ;
tdsolution.setChangeHandler (“tdsolution”) ;

You can see the two different radio groups i’m trying to reference, this is where I think my problem is. Both these radio groups are part of a movie called form, then on my submit button I have:

on (release) {
form.loadVariables(“email.asp”, “POST”);
}

The input fields I have in my form collect and post properly, it’s just the data from the radios. I’d appreciate any help. Thanks!

–Isis