## Script (Python) "getSessionId"
##bind container=container
##bind context=context
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=
##title=
##
# $Id: getSessionId.py 2133 2007-08-20 21:38:24Z henrik $
"""
return the Session Id
"""

# must be changed in 2007/2008; should return only the last two digits

import DateTime
now = DateTime.DateTime()
if now.month() > 11:
    s = "%s" % now.year()
else:
    s = "%s" % (now.year() - 1)
return s
