Basic Email Sending Problem?

Hi,

I am adding a basic email sending page to my flash site… the mail is sent using outlook… (Opens up the visitors email sending program) - My problem is that when all the relevant info is dropped into the mail for sending it kinda looks like a long line of text… all I want to be able to do is seperate each section that is entered… a simple line break ?

on (release) {
if (!email.length) {
email = “Email Required…”;
} else if (email.indexOf(".") == -1 || email.indexOf("@") == -1) {
email = “Invalid Email…”;
} else if (!Comments.length) {
Comments = “Comments Required…”;
} else {
strMsg = “Name :”+username+newline+“Email: “+email+newline+“Comments: “+Comments;
getURL(”<A href="mailto:bob@bob.com”+”?subject=contact”+"&body="+strMsg">mailto:bob@bob.com"+"?subject=contact"+"&body="+strMsg);
}
}

Any help would be greatly appreciated.

Thanks in advance.