if(typeof Util == "undefined"){ Util = {}; }

Util.Options = function(options)
{
	this.options = options;
}

Util.Options.prototype = {
	
	get: function(name)
	{
		if(typeof this.options[name] == "undefined")
		{
			return "";
		}
		else
		{
			return this.options[name];
		}
	}
		
}
