It's not a session variable, it's the value of the Session.Timeout property. Just set a new value for this in the global.asa file and it will fix the issue for you. For example, do it in the Session_OnStart sub:
Sub Session_OnStart()
(...)
Session.Timeout = 15 'setting the session duration to 15 minutes
(...)
End Sub