
function Session(){
	this._sessId = GetCookieValue('PHPSESSID');
}

Session.prototype._sessId;

Session.prototype.exist = function(){
	if(this._sessId != null)
		return true;
	return false;
}
