## Script (Python) "getSessionId"
##bind container=container
##bind context=context
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=
##title=
##
# $Id: getSessionString.py 1490 2007-02-25 00:32:45Z joachim $
"""
return the Session string 
"""
import DateTime
now = DateTime.DateTime()
if now.month() > 7:
    return "%s/%s" % (now.year(),now.year()+1)
return "%s/%s" % (now.year()-1,now.year())
