<center><h1>Email Buttons</h1></center>
<p><b>Note:</b> Not all mail programs support these options, and some may support one but not the other.</p>
<p>This button when clicked produces an email window with the subject already filled out.</p>
<form>
<INPUT TYPE="button" VALUE="Click Here to Write to Me"
onClick="parent.location='mailto:apalmer@dircon.co.uk?subject=JavaScript Resources Site'">
</FORM>
<p>This button also fills out the field for a copy to be sent elsewhere.</p>
<form>
<INPUT TYPE="button" VALUE="Click Here to Write to Me and Someone Else"
onClick="parent.location='mailto:apalmer@dircon.co.uk?subject=JavaScript Resources Site&cc=email2@server.com'">
</FORM>
