function aCellMZ5(objectName){
	//A td OBJECT
	var	newCell=aObjectMZ5(objectName);

	newCell.getRow = function(){
		var row=this.self.parentNode;
		if (!row.deleteCell) error("aCellMZ5.getRow: should be a row");
		return aRowMZ5(this.self.parentNode);
	}//getRow

	newCell.getColumn = function(){
		return aColumn(this.getTable(), index);
	}//getColumn

	newCell.getTable=function(){
		//MOVE UP THOUGH tr, tbody TO GET TO table
		return aTable(this.self.parentNode.parentNode.parentNode);
	}//getTable

	return newCell;
}//aCellMZ5

