%
Dim meteorology
Set meteorology = New HashTable
meteorology.Add "Updated", FormatDateTime(now(),1) '- entry allows .Exists to work on empty hash table
%>
Fill in the form below to provide a location, date and time for your point of interest.
The SARG meteorological archive tool will retrieve the reported weather conditions.
<%
If Request.Form("Trigger")="true" Then
DateString=Request.Form("SurveyDate") & " " &Request.Form("pointtimeh") & ":" & Request.Form("pointtimem") & ":" & "00"
DateType = CDate(DateString)
If len(Request.Form("Trigger"))>0 Then
MetTable = DrawMetTable(OSGB_Clean(Request.Form("GridRef")),DateType,meteorology)
response.write(MetTable)
End If
End If
%>