Ciao a tutti. Ho un dubbio tecnico sull'oggetto SESSION

Ho tre zone protette di un sito con tre autenticazioni separate. Vorrei inserire un forum comune a tutti gli utenti accessibile solo se si è autenticati e solo se si proviene da una delle tre sezioni.
E' possibile far condividere contemporaneamente le tre "session" ad esempio fondendole insieme?? oppure devo triplicare il forum condividendo lo stesso db??

Ciao e grazie...

<%
If Session("SESSIONE1") <> "login" Then
Response.Redirect "../default.asp"
If Session("SESSIONE1_UserID") = "" And Session("SESSIONE1_status_UserID") <> -1 Then Response.Redirect "../default.asp"
End If
%>

<%
If Session("SESSIONE2") <> "login" Then
Response.Redirect "../default.asp"
If Session("SESSIONE2_UserID") = "" And Session("SESSIONE2_status_UserID") <> -1 Then Response.Redirect "../default.asp"
End If
%>

<%
If Session("SESSIONE3") <> "login" Then
Response.Redirect "../default.asp"
If Session("SESSIONE3_UserID") = "" And Session("SESSIONE3_status_UserID") <> -1 Then Response.Redirect "../default.asp"
End If
%>