% OPTION EXPLICIT dim blnShowWarning 'Session("FirstEntry") = "" if Session("FirstEntry") = "" then Session("FirstEntry") = "false" blnShowWarning = "true" else blnShowWarning = "false" end if if Request.Form <> "" then Session("City") = Request.Form("city") Session("Size") = Request.Form("size") Session("Difficulty") = Request.Form("difficulty") if Request.Form("nosound") = "ON" then Session("SoundOn") = "false" else Session("SoundOn") = "true" end if Response.Redirect("gameframe.asp") end if dim randImage, dir(4) dir(0) = "sf" dir(1) = "veracruz" dir(2) = "rio" dir(3) = "trinidad" dir(4) = "columbus" Randomize randImage = dir(Int(3 * Rnd)) & "/800/pic" & Int(13 * Rnd) & ".gif" %>