function _IC_Table(table_id)
{
	this.vTable		= null;
	this.vBody		= null;
	this.table_id	= table_id;

	this.getTableObj = function()
	{
		this.vTable = document.getElementById(this.table_id);
		if(this.vTable == null)
		{
			this.vTable = document.createElement("TABLE");
			this.vTable.setAttribute("id", this.table_id);
		}

		return this.vTable;
	}

	this.getTableBodyObj = function()
	{
		this.vBody = document.getElementById(this.table_id + "_body");
		if(this.vBody == null)
		{
			this.vBody = document.createElement("TBODY");
			this.vBody.setAttribute("id", this.table_id + "_body");
		}

		return this.vBody;
	}
}

function addRow()
{
	var row = document.createElement("tr");

	return row;
}

function addCol()
{
	var cell = document.createElement("td");

	return cell;
}