<%
objConnOffers.Mode = 3
objConnOffers.Open conStr
strSQL="SELECT * FROM _CutOffDates"
objRSOffers.open strSQL, objConnOffers
CONST_OFFER_CUTOFF_DATE=Trim(objRSOffers("CONST_OFFER_CUTOFF_DATE"))
CONST_LONG_RUNS_TO_DATE=Trim(objRSOffers("CONST_LONG_RUNS_TO_DATE"))
CONST_OFFER_CUTOFF_DATE_LON=Trim(objRSOffers("CONST_OFFER_CUTOFF_DATE_LON"))
CONST_LONG_RUNS_TO_DATE_LON=Trim(objRSOffers("CONST_LONG_RUNS_TO_DATE_LON"))
objRSOffers.close
objConnOffers.close
Set objRSOffers =nothing
Set objConnOffers = nothing
'CONST_OFFER_CUTOFF_DATE="2010-02-28"
'CONST_LONG_RUNS_TO_DATE="offer extended until 28th February 2010"
'CONST_OFFER_CUTOFF_DATE_LON="2010-02-28"
'CONST_LONG_RUNS_TO_DATE_LON="offer extended until 28th February 2010"
If Now <= CDate(CONST_OFFER_CUTOFF_DATE) Then
%>
<%
End If
If Now <= CDate(CONST_OFFER_CUTOFF_DATE_LON) Then
%>
<%
End If
%>