So this feedback form will ask for name, emails address and their comments
First of all add this code in between the <head> and </head> tags
<script name="JavaScript">
<!--
function SendEmail()
{
var toaddy = 'name@domain.com';
var subject = 'JS Form Submission';
var mailer = 'mailto:' + toaddy + '?subject=' + subject + '&body=' +
'Name%20is\n\t' + document.jsform.visitorname.value +
'\n\n' +
'Email%20is\n\t' + document.jsform.email.value +
'\n\n' +
'Message:\n\n' + document.jsform.message.value +
'\n\n';
parent.location = mailer;
} // -->
</script>
Thats the base of it if you havn't got that in it wont work
The next bit goes in between <body> and </body> tags in the position you want it
<form name="jsform"> <table><tr> <td align="right">Name:</td> <td><input name="visitorname" size="27"></td> </tr><tr> <td align="right">Email:</td> <td><input name="email" size="27"></td> </tr><tr> <td colspan="2"> Your message:<br> <textarea name="message" cols="31" rows="6" wrap="soft"> </textarea> <center> <p> <input type="submit" onClick="SendEmail()" value="Send Message"> </center> </td> </tr></table> </form>
And thats it thats all you need! you can customize colours etc.
Hope this helps














