|
| I'm having trouble working with a template form.
]
on (release) {
url_var =
"server_option="+_root.server_option+"&recipient="+_root.recipient+"&your_name="
+_parent.your_name+"&your_email="+_parent.your_email+"&message="+_parent.message
;
getURL("contact."+_root.server_option+"?"+url_var, "_blank", "GET");
_parent.your_name = "";
_parent.your_email = "";
_parent.message = "";
_parent.your_position = "";
}
I want to add more fields to this document, but can only do it by adding to
the server option area. The problem is: all the information filled out
appears in one line. I'd like to break it up into different lines when
submitted into an email. Any ideas how to do this?
Thanks a bunch!
Cabel
|
|