% 'Check to see if the music setting is being changed: SELECT CASE (Request.QueryString("music")) Case "on" Session("music") = "main_music.swf" Case "off" Session("music") = "main_muted.swf" Case Else If Session("music") = "" Then Session("music") = "main_music.swf" END SELECT If Request.QueryString("flash") = "true" Then Session("flash") = True If Not Session("flash") = True Then Response.Redirect "main_noflash.html" %>