DHSB
Order Form
<%
If Request.querystring("print") = "true" then
%>
Mailing Address:
DHSB
P.O. Box 30938
Honolulu, HI 96820
Fax Number:
808.833.0935
<%
End If
%>
*Please fill in the method of
payment section
and sign form before mailing or faxing.
|
Name:
|
<%=Session("Name")%> |
|
Address:
|
<%=Session("Address")%> |
|
|
<%=Session("Address2")%> |
|
Phone:
|
<%=Session("Phone")%> |
|
Number of Orders:
|
<%=Session("Orders")%> |
|
Shipping and Handling:
($8 per package)
|
$<%=FormatNumber(Session("Shipping"), 2)%>
|
|
Subtotal:
|
$<%=FormatNumber(Session("Subtotal"), 2)%>
|
<%
If Session("State") = "HI" then
%>
|
Tax (4.166%) :
|
$<%=FormatNumber(Session("Tax"), 2)%>
|
<%
End If
%>
|
Total:
|
$<%=FormatNumber(Session("Total"),2)%>
|
|
|
<% If Session("gifts") > 0 then
%>
|
Gift Orders:
|
<%
For i=1 to Session("gifts")
%>
|
|
|
Receiver Name #<%=i%>:
|
<%=Session("Rec" & i & "Name")%> |
|
Address:
|
<%=Session("Rec" & i & "Address1")%> |
|
|
<%=Session("Rec" & i & "Address2")%> |
|
Phone:
|
<%=Session("Rec" & i & "Phone")%> |
<%
Next
End If
%>
Please circle a method of payment:
Visa
Mastercard
|
Card Name: |
__________________________________
|
|
Card Number:
|
- - -
|
|
Expiration Date:
|
/
|
|
Authorizing Signature:
|
__________________________________
|
<%
if request.querystring("print") <> "true" then
%>
<%
End If
%>