function Widget(widgetName, targetElementId, requestUri) {
	this.name = widgetName;
	this.id = targetElementId; 
	this.uri = requestUri;
}

Widget.prototype.name;
Widget.prototype.id;
Widget.prototype.uri;

Widget.prototype.getName = function() { return this.name; }
Widget.prototype.getId = function() { return this.id; }
Widget.prototype.getUri = function() { return this.uri; }

