Thanks for pointing me in the right direction. I have something, but there is a problem. It will submit to the next page and pop up outlook at the same time while populating the "To:", "Subject:", and "Body:". The problem is that in the email client the Body typed into the textarea shows up as one long string with no line breaks. How do I send it with the line breaks? Thanks.
<SCRIPT LANGUAGE="JavaScript">
<!--
function PopUpOutlook(email,subject,body) {
var output = 'mailto:';
output += email;
output += '&subject=' + subject;
output += '&body=' + body;
location.href = output;
}
//-->
</SCRIPT>
<form name="MailIt" method="post" action="test_mail.php">
Email<input type="Text" name="email" value=""><br>
Subject<input type="Text" name="subject" value=""><br>
Body<textarea name="body" cols="15" rows="4"></textarea><br>
<input type="Submit" value="Submit" onclick="PopUpOutlook(this.form.email.value,this.form.subject.value,this.form.body.value)">
</form>