var theme_c = function()
{
	this.element_o = {};
	this.index_i = 0;

	/**/

	this.setElementByPrefix = function(prefix_s)
	{
		this.element_o = document.getElementById(prefix_s + (document.all ? 1 : 2));
	};

	this.setTheme = function(index_i)
	{
		if (typeof this.element_o.setTheme != 'undefined')
		{
			this.element_o.setTheme(index_i);
			this.index_i = index_i;
		}
	};

	this.setInsuranceVisible = function(state_b)
	{
		if (typeof this.element_o.setInsuranceVisible != 'undefined')
			this.element_o.setInsuranceVisible(state_b);
	};

	this.getIndex = function()
	{
		return this.index_i;
	};
};