function aRowIE4(objectName){
	//A tr OBJECT
	var newRow=aObjectIE4(objectName);

	newRow.getNumCell=function(){
		//NUMBER OF COLUMNS ON THIS ROW
		return this.self.cells.length;
	}//getNumElement

	newRow.getCell=function(index){
		return aCellIE4(this.self.cells[index]);
	}//getColumn

	newRow.getTable=function(){
		//GET PARENT TABLE
		return aTableIE4(this.self.parentNode);
	}//getTable

	newRow.getHeight=function(){
		return this.getCell().getHeight();
	}//getHeight

	return newRow;
}//aRow

