%
'----------------------------------------------------------
' get passing parameter
'----------------------------------------------------------
dest = Request.Form("dest")
if (dest <> "") then
Session("dest") = dest
end if
'----------------------------------------------------------
'Response.Write("dest = " & Session("dest") & "
")
'----------------------------------------------------------
'----------------------------------------------------------
' get passing parameter
'----------------------------------------------------------
comp = Request.Form("comp")
if (comp <> "") then
Session("comp") = comp
end if
if (Session("comp") <> COMPANY2) then
Session("comp") = COMPANY2
Session("dest") = TARGET00
end if
'----------------------------------------------------------
'Response.Write("comp = " & Session("comp") & "
")
'----------------------------------------------------------
%>