function Shape(name) {
	if (typeof (name) == "undefined") {
		name = "";
	}
	this.name = name;
	this.id = null;
	this.zoomFactor = 0.55;
	this.fill = null;
	this.stroke = null;
	this.fillColor = null;
	this.strokeColor = null;
	this.strokeWidth = null;
	this.hilightColor = null;
	this.hilightTextColor = null;
	this.opacity = null;
}

Shape.prototype.getBrowser = function(){
	var clientBrowser = new ClientBrowser();
	clientBrowser.init();
	return clientBrowser.browser;
}

Shape.prototype.getZoomFactor = function(){
	return this.zoomFactor;
}

