| Starting Location: |
| Enter a street address (don't use city, state, or zip code), intersection (use the "&" symbol), or choose a landmark: |
|
|
OR |
|
| Destination: |
| Enter a street address (don't use city, state, or zip code), intersection (use the "&" symbol), or choose a landmark: |
|
|
OR |
|
| Date of travel: |
|
Time of travel: |
<%
' ----------------------------------------------------------------------------------
' Build the MONTH drop-down box
' ----------------------------------------------------------------------------------
' This produces the current months integer (ex. 7)
dim z, myNow
myNow = DateAdd("n", 4, Now)
response.write("")
%>
<%
' ----------------------------------------------------------------------------------
' Build the Day drop-down box
' ----------------------------------------------------------------------------------
' This produces the current Day integer (ex. 7)
response.write("")
%>
<%
' ------------------------------------------------------------------------------------
' Build the Year drop-down box
' ------------------------------------------------------------------------------------
response.write("")
%>
|
|
<%
' ------------------------------------------------------------------------------------
' Build the Hour drop-down box
' ------------------------------------------------------------------------------------
dim iHour
iHour = Hour(myNow)
if iHour = 0 then iHour = 24
if iHour > 12 then iHour = iHour - 12
response.write(":")
%>
<%
' ----------------------------------------------------------------------------------
' Build the Minute drop-down box
' ----------------------------------------------------------------------------------
' This produces the current Minute integer (ex. 7)
dim sMinute
response.write("")
%>
<%
' ----------------------------------------------------------------------------------
' Build the AM/PM drop-down box
' ----------------------------------------------------------------------------------
response.write("")
%> |
| Walking distance: |
Which do you prefer: |
|
|