function aCellIE4(objectName){
	//A td OBJECT
	var	newCell=aObjectIE4(objectName);

	newCell.getRow = function(){
		var row=this.self.parentNode;
		if (!row.deleteCell) error("aCellIE4.getRow: should be a row");
		return aRowIE4(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;
}//aCellIE4

