Below is the HTML that will add the 'check availability box on your website that links to your reseller storefront.
**This section goes between the </HEAD> and <BODY> tags:
<FORM name="LookupForm" method="POST" action=https://www.secureserver.net/register.asp?prog_id=YOURUSERIDHERE>
<input type="hidden" name="checkAvail" value="1">
<input type="hidden" name="JScriptOn" value="yes">
*This part goes in the page for the check availability box:
<input style="font-size:11px;font-face:verdana" type="text" name="domainToCheck" value="" size="16" width="20" maxlength="63">
<select id="tld" name="TLD" style="font-size:11px" face="verdana">
<option value=".COM" selected>.com</option>
<option value=".NET" >.net</option>
<option value=".ORG" >.org</option>
</select>
<input TYPE="image" SRC="http://www.secureserver.net/images/ResellerHomepage/btn_go.gif" BORDER="0" WIDTH="41" HEIGHT="20">
One note: this is only giving you .COM .NET & .ORG in the TLD dropdown. If you're offering .BIZ, or .INFO or others, , you'll want to add "options" for them, for example:
<option value=".INFO" >.info</option>
<option value=".BIZ" >.biz</option>
<option value=".US" >.us</option>
<option value=".WS" >.ws</option>
<option value=".CC" >.CC</option>
<option value=".TV" >.TV</option>
<option value=".BE" >.BE</option>
<option value=".JP" >.JP</option>
<option value=".CO.UK" >.CO.UK</option>
<option value=".ME.UK" >.ME.UK</option>
<option value=".ORG.UK" >.ORG.UK</option>
Please copy and past the specific domains you are offering and put them under the .ORG line listed above.