public void InsertTableRow(TableRow TargetRowPosition, TableRow tableRow)
 {
     //add new row to table, after last row in table
     TargetRowPosition.InsertBeforeSelf(tableRow);
 }