// topic Object
function topic (title, url) {
	this.title = title;
	this.url = url;
	this.toString = function () {
		if (this.url == '') {
			return (this.title);
		} else {
			return ('<a href="' + this.url + '">' + this.title + '</a>');
		}
	}
}
