I have the forms up, but have a question. I am using
1. How do I make the customer's email address appear instead of that cyberspace email? xxx@xxx.xxx
Thanks
| CODE |
<script language="JavaScript"> <!-- var url="/index.asp?PageAction=Custom&ID=#"; function champsok() { if (document.formu.realname.value.length == 0) { alert("Please enter your name."); return false; } if (document.formu.inquiry.value.length == 0) { alert("Please enter your question."); return false; } if ((document.formu.email.value.length == 0)||(document.formu.email.value.indexOf('@',0)==-1)||(document.formu.email.value.indexOf('.',0)==-1)) { alert("Please enter a valid e-mail address."); return false; } document.location=url; return true; } //--> </script> |