We found this great trick to block most spam for any form mail type form. Just paste this right above the submit button in the code: <div id=”fooDiv”> <label for=”foo”>Leave this field blank</label> <input type=”text” name=”foo” id=”foo”> </div> <script> (function () { var e = document.getElementById(“fooDiv”); e.parentNode.removeChild(e); })(); </script> The will eliminate…