
	function thread(threadid, title, postuserid, poster, threaddate, threadtime, message, replies)
	{
		this.threadid = threadid;
		this.title = title;
		this.postuserid = postuserid;
		this.poster = poster;
		this.threaddate = threaddate;
		this.threadtime = threadtime;
		this.message = message;
		this.replies = replies;
		
	}
	var threads = new Array(0);
