<%
Dim sPrintDate           'as string
Dim sRegularMail        'as string
Dim sPriorityMail        'as string
Dim sFedExMail        'as string
Dim sOverseas         'as string
     

sPrintDate = "01/28/2005"        'You only need to change this value whenever your next print date chang


sRegularMail =  DateAdd("d", 13, sPrintDate)     '6 = the number of days, ie: 6 days
sRegularMail = Left(FormatDateTime(sRegularMail, 1), (Len(FormatDateTime(sRegularMail, 1)) - 6))

sPriorityMail = DateAdd("d", 08, sPrintDate)
sPriorityMail = Left(FormatDateTime(sPriorityMail, 1), (Len(FormatDateTime(sPriorityMail, 1)) - 6))

sFedExMail = DateAdd("d", 3, sPrintDate)
sFedExMail = Left(FormatDateTime(sFedExMail, 1), (Len(FormatDateTime(sFedExMail, 1)) - 6))

sOverseas = DateAdd("d", 20, sPrintDate)
sOverseas = Left(FormatDateTime(sOverseas, 1), (Len(FormatDateTime(sOverseas, 1)) - 6))

%>
<table border="0" cellpadding="2" cellspacing="0" class="shippingtable">
<tr bgcolor="#7C6D27">
<td colspan="2">
<div align="center">
<b><font face="Georgia, Times New Roman, Times, serif" color="#FFFFFF">Shipping Options and Book Delivery Dates</font></b></div>
</td>
</tr>
<tr>
<td width="30%" nowrap bgcolor="#F4F0DB">
<div align="right">&nbsp;1st Class Mail (no extra charge):</div>
</td>
<td width="70%" nowrap bgcolor="#F4F0DB">
Delivery on or before <%=sRegularMail %></td>
</tr>
<tr>                 
<td width="30%" nowrap bgcolor="#E9E1B8">           
<div align="right">&nbsp;Priority Post&nbsp;($5 extra):</div>
</td>
<td width="70%" nowrap bgcolor="#E9E1B8">Delivery
                        on or before <%= sPriorityMail %></td>
</tr>
<tr>         
<td width="30%" nowrap bgcolor="#F4F0DB">                      
<div align="right"><b>&nbsp;</b>Courier Express*&nbsp;($10 extra):</div>
</td>
<td width="70%" nowrap bgcolor="#F4F0DB">
                      Delivery
                        on or before <%= sFedexMail %></td>
</tr>
<tr>               
<td width="30%" nowrap bgcolor="#E9E1B8">
<div align="right">&nbsp;Overseas
                        Air Mail ($7 extra):</div>
</td>
<td width="70%" nowrap bgcolor="#E9E1B8">Approximately
                        <%= sOverseas %></td>
</tr>
<tr bgcolor="#7C6D27">
<td colspan="2">
<div align="center"><b><font color="#FFFFFF" face="Georgia, Times New Roman, Times, serif">*&nbsp;Shipments are by Federal Express, UPS or Airborne Express based on delivery location.   If selecting the Courier Express delivery option, do not use PO Box for address Questions? Call 1-877-898-1440 or email  <a href="mailto:publish@bookbyyou.com">publish@bookbyyou.com</a></font></b></div>
</td>
</tr>
</table>
