Format text in flash generated email?

I am using the followng code to generate an email for someone to send an email to a friend from my site, and i am using the following code…

on (release) {
MyMail = “”;
Subject = escape(“subject goes here”);
Body = escape(“hello , this is the body”);
URL = “mailto:”+MyMail+"&subject="+Subject+"&body="+Body ;
getURL(URL, “_blank”);
}

My problem is that i want the body text to be in paragraphs and i don’t know how to format the text in flash to do it?!?!?

Can anyone help??

Cheers

Matt