function ValidateForm() {
 function trim(str, box) {
 var newstr;
 newstr = str.replace(/^\s*/, "").replace(/\s*$/, "");
 newstr = newstr.replace(/\s{2,}/, " ");
 return newstr; }
document.MailForm.Name.value = trim(document.MailForm.Name.value);
if (document.MailForm.Name.value == null || document.MailForm.Name.value == "") { alert ("Please enter your name"); return false; }
document.MailForm.Message.value = trim(document.MailForm.Message.value);
if (document.MailForm.Message.value == null || document.MailForm.Message.value == "") { alert ("Please enter your comments"); return false; } }

document.write('<p style="font-size:12px;"><b>Post your comments and tips about '+document.title+'</b></p>'+
'<p style="font-size:11px; color:red;"><b>'+
'If you have any comments, tips or suggestions that may interest other visitors, you can submit them using the form below.<br>'+
'Please keep in mind that all information you submit becomes publicly available. You should exercise caution when disclosing your personal information.<br>'+
'Please note that all submissions will be reviewed before publishing to avoid unwanted advertising, spamming, etc.<br>'+
'Please do not submit any questions or start any conversations as this is not a forum.</b></p>'+
'<form method="post" action="http://www.herbs2000.com/files/1_mail.html" name="MailForm" onSubmit="return ValidateForm()">'+
'<input type="hidden" name="From" value="herbs2000.com - Comments- '+location.href+' ">'+
'<input type="hidden" name="Action" value="SendComments">'+
'<input type="hidden" name="Email" value="None">'+
'<input type="hidden" name="Subject" value="Comments from herbs2000.com">'+
'<table cellpadding="4" cellspacing="0" width="360"><tr>'+
'<tr><td align="left" style="font-size:11px">Your Name:</td><td align="left"><input type=text name="Name" size="40" style="font-size:11px"></td></tr>'+
'<tr><td align="left" style="font-size:11px">Comments:</td><td align="left"><textarea name="Message" cols="37" rows="5" style="font-size:11px"></textarea></td></tr>'+
'<tr><td></td><td align="left"><input type="submit" style="font-size:11px"><input type="reset" style="font-size:11px"></td></tr></table></form>');

//document.write('<center><form method="post" action="../files/1_mail.html">'+
//'<input type="hidden" name="PageURL" value="'+location.href+'">'+
//'<input type="hidden" name="PageTitle" value="'+document.title+'">'+
//'<input type="hidden" name="Action" value="Comments">'+
//'<input type="submit" style="font-size:11px" value="Post your comments, tips, and suggestions about\n'+document.title+'"></form></center>');