<HTML> <!-- ARCHIVE by FORTUNECITY.ws --> <HEAD> <LINK rel='stylesheet' type='text/css' href='style.css'> <STYLE></STYLE> <SCRIPT language="JavaScript" src="javascript/cart.js"> </SCRIPT> <SCRIPT> //global variable for error flag var errfound = false; //function to validate by length function ValidLength(item, len) { return (item.length >= len); } //function to validate an email address function ValidEmail(item) { if (!ValidLength(item, 5)) return false; if (item.indexOf ('@', 0) == -1) return false; return true; } // display an error alert function error(elem, text) { // abort if we already found an error if (errfound) return; window.alert(text); elem.select(); elem.focus(); errfound = true; } // main validation function function Validate() { errfound = false; if (!ValidLength(document.TheForm.username.value,6)) error(document.TheForm.username,"Invalid Name"); if (!ValidLength(document.TheForm.phone.value,10)) error(document.TheForm.phone,"Invalid phone number"); if (!ValidEmail(document.TheForm.email.value)) error(document.TheForm.email, "Invalid Email Address"); if (!ValidLength(document.TheForm.address.value,10)) error(document.TheForm.address, "Invalid Mailing Address"); if (!ValidLength(document.TheForm.city.value,15)) error(document.TheForm.city, "Invalid City/State/Zip"); return !errfound; /* true if there are no errors */ } </SCRIPT> </HEAD> <BODY text="yellow" link="#215E21" vlink="black"><script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-47423994-1', 'fortunecity.ws'); ga('send', 'pageview'); </script> <center> <br> <div> <script language="javascript" type="text/javascript" src="http://ad.broadcaststation.net/ads/show_ad.php?width=728&height=90"></script> </div> </center> <center> <br> <div style="height:5px"></div> </center> <CENTER><H1>CUSTOMER ORDER FORM</H1> <P> </CENTER> <P> As you fill out the form below, appropriate calculations will be made. Please take care to check over the form when you are complete, so as to avoid any mistakes. Thank you! <P><HR> <FORM NAME="TheForm" METHOD="POST" ACTION="http://www.best.com/~fmrfreek/CGI/synergSeeds.cgi" onSubmit="return Validate(this.form)"> <H3>Shipping Address</H3> <CENTER> <TABLE border=0 cellpadding=2> <TR><TD align=RIGHT>Name:</TD> <TD><INPUT TYPE=TEXT NAME="username" VALUE="MALINI"size=45> </TD></TR> <TR><TD align=RIGHT>Address:</TD> <TD><INPUT TYPE=TEXT NAME="Address" VALUE="1200 XYZ AVE" size=60><BR><INPUT NAME="Address" size=60></TD></TR> <TR><TD align=RIGHT>City:</TD> <TD><INPUT TYPE=TEXT NAME="city" VALUE="SANTA CLARA" size=25> State: <INPUT TYPE=TEXT NAME="state" VALUE="CA" size=2> Zip Code: <INPUT TYPE=TEXT NAME="zip" VALUE="95050" size=10></TD></TR> <TR><TD ALIGN=right>Day Phone:</TD> <TD><INPUT TYPE=TEXT NAME="phone" VALUE="(123)456 7890" SIZE=14> Fax: <INPUT TYPE=TEXT NAME="fax" VALUE="(123)456 7890" SIZE=14> Country: <INPUT TYPE=TEXT NAME="USA" SIZE=14 ></TD></TR> <TR><TD ALIGN=right>E-Mail:</TD> <TD><INPUT TYPE=TEXT NAME="email" VALUE="vmalini@yahoo.com" SIZE=60></TD></TR> </TABLE></CENTER><BR> <HR> <HR><H3>Method of Payment</H3> <DL><INPUT TYPE="RADIO" NAME="pay" VALUE="PAYNOW" CHECKED>Please use this credit card for payment: <DD><INPUT TYPE="RADIO" NAME="visa" VALUE="VISA" CHECKED>Visa <INPUT TYPE="RADIO" NAME="mast" VALUE="MAST">Master Card <DD>Card Number <INPUT TYPE=TEXT NAME="cardno" VALUE="123456789" size=20> Expiration Date <INPUT TYPE=TEXT NAME="expdate" VALUE="07-01-99" size=8></DL> <HR><P><CENTER><INPUT TYPE="SUBMIT" VALUE="Submit Order" onClick="resetCookies()"> <INPUT TYPE="RESET" VALUE="Clear Order Form (Reset)" onClick=ResetForm(this.form)></CENTER> </FORM> </BODY> <!-- ARCHIVE by FORTUNECITY.ws --> <center> <div> <br> <script language="javascript" type="text/javascript" src="http://ad.broadcaststation.net/ads/show_ad.php?width=300&height=250&cache=0"></script> <script language="javascript" type="text/javascript" src="http://ad.broadcaststation.net/ads/show_ad.php?width=300&height=250"></script> </div> <br> <br> </center> </HTML>