Why does this code at the top of the javascript section remove the ability to save or email copies of the form. Any copies of the form saved, will just be a blank page.
if (location.href.indexOf("http://") == -1) { location.href = location.href.replace("https://", "http://"); }
The goal here is to force non-secure connections, so that we can transfer non-secure data to non-secure services. Modern browsers do not allow for mixed security, if your website is encrypted, all transmission must be encrypted. This works perfectly, but prevents saving any copies of the form.