Im trying to created a webform another way since internet explorer sucks and requires to much babying.

I have basically set a mailto button at the bottom of my page.

With the mailer address and subject coming up when you click the button.

Now what i need to know is there anyway i can get the body with a preformatted message. Ie the form.

I thought i could create a box called body and write it in there, but for some reason the click button will only work with one line messages and as soon as i try to do more it stops working...

the button action

on (release) {
getURL("mailto:" + to + "?subject=" +subject+ "&body=" + body);
}

any ideas or help?!?!?