<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <% Option Explicit%> Retail Merchant Inquiry <% Dim zip, phone, numlocs Dim fc_name, fc_position, fc_company, fc_address, fc_city, fc_state, fc_zip Dim fc_phone, fc_numlocs, fc_parentcompany, fc_processmeth 'fc is short for font color 'set the font color to red for ones where an error was detected 'calltime and email are not required, so do not need to check for font color zip = Session("zip") phone = Session("phone") numlocs = Session("numlocs") If Session("resend_ind") = "Y" Then if Session("name_err") = "Y" Then fc_name = "red" End If if Session("position_err") = "Y" Then fc_position = "red" End If if Session("company_err") = "Y" Then fc_company = "red" End If if Session("address_err") = "Y" Then fc_address = "red" End If if Session("city_err") = "Y" Then fc_city = "red" End If if Session("state_err") = "Y" Then fc_state = "red" End If if Session("zip_err") = "Y" Then fc_zip = "red" zip = " " End If if Session("phone_err") = "Y" Then fc_phone = "red" phone = " " End If if Session("numlocs_err") = "Y" Then fc_numlocs = "red" numlocs = " " End If if Session("parentcompany_err") = "Y" Then fc_parentcompany = "red" End If End If %>

Retail
Merchant
Inquiry
You will be contacted within one business day
>
*Name

>

>
*Position
>
> *Company Name
>
>*Address
>
>
*City
>
>
*State
>
>
*Zip
>
>
*Contact Phone Number
>
Best time to call
>
E-mail Address
>
>
*Approximate Number of Locations

>

>
*Parent Company (If wholly owned insert none)
>

Current method of processing:

 





*Field requires completion

 

<% 'reset the session variables Session("resend_ind") = " " Session("name") = " " Session("position") = " " Session("company") = " " Session("address") = " " Session("city") = " " Session("state") = " " Session("zip") = " " Session("phone") = " " Session("calltime") = " " Session("email") = " " Session("numlocs") = " " Session("parentcompany") = " " Session("name_err") = " " Session("position_err") = " " Session("company_err") = " " Session("address_err") = " " Session("city_err") = " " Session("state_err") = " " Session("zip_err") = " " Session("phone_err") = " " Session("numlocs_err") = " " Session("parentcompany_err") = " " %>