if ((top.CellInit == "undefined") || (top.CellInit != true))
{
	/**
	*
	* Cell CLASS definition.
	*
	*/
	
	function Cell(){
		this.text = null;
		this.attributes = new HashMap();
	}

	Cell.prototype.setText = function(text)
	{
		this.text = text;
	}

	Cell.prototype.getText = function()
	{
		return this.text;
	}
	Cell.prototype.setAttributes = function(hashTable)
	{
		this.attributes = hashTable;
	}

	Cell.prototype.getAttributes = function()
	{
		return this.attributes;
	}

	//////////////////////////////////////

	top.CellInit = true;
}
