thisMonth = month(date) if thisMonth < 10 then thisMonth = "0" & thisMonth end if thisDay = day(date) if thisDay < 10 then thisDay = "0" & thisDay end if date_entered = year(date) & "-" & thisMonth & "-" & thisDay today = date_entered whattimeisit = FormatDateTime(Now, 4) rightnow = time timeSplit = Split(time, ":") timehour = timeSplit(0) timeminute = timeSplit(1) timesecondsplit = split(timeSplit(2), " ") timesecond = timesecondsplit(0) daynumber = weekday(date) mode = Request("mode") id = Request("id") 'whattime = timehour & timeminute whattime = Replace(whattimeisit, ":", "") if (daynumber >= 2 and daynumber <= 6) then if whattime >= 0700 and whattime < 1300 then Response.redirect "notavailable.asp?id=" & id end if elseif (daynumber = 1) then if whattime >= 1300 and whattime <= 2300 then Response.redirect "notavailable.asp?id=" & id end if elseif (daynumber = 7) then if whattime >= 1300 and whattime < 2300 then Response.redirect "notavailable.asp?id=" & id end if end if