
function UBLinkController(){
	this.Url = "";
	this.DisplayContent = "";
	
	this.ResponseFlush = function(){
		if (this.DisplayContent == ""){
			//Do nothing
		} else {
			if (this.Url == ""){
				document.write(this.DisplayContent);
			} else {
				document.write('<a href="' + this.Url + '" target="_blank">' + this.DisplayContent + '</a>');
			}
		}
	}

}

var UBLinkController = new UBLinkController();
UBLinkController.ResponseFlush();
