/*
Asterop GeoIntelligence Intranet/Internet Framework

(c) Asterop 1999-2007

CSession : Server session
*/

var CSession = Class.create();

CSession.prototype =
{
	initialize: function()
	{
		this.m_sessionId = "";
	},

	SetId: function(sessionId)
	{
		this.m_sessionId = sessionId;
	},

	GetId: function()
	{
		return this.m_sessionId;
	}
};

