/*
	Installs the user session.
*/
function Session() {
	this.report = new Report(this);
	this.valid = new Valid();
	this.user = new User(this);
	this.forum = undefined;
	
	this.initForum = function(generateFunc) {
		if (this.forum === undefined) {
			this.forum = new Forum(this);
			this.forum.setGenerateFunction(generateFunc);
		}
	}
}
