Assuming that, indeed, there is only one
Code:
<td id="TopCell" ... >
on that page (as indeed there should be, since id's should be unique) and assuming that you want to remove the second and third <tr>s from that enclosed <table>, then *removing* the rows is easy.
*MOVING* the rows to the green-marked <div> is not so easy.
Does that <div> already contain a <table>???
If not, we would have to create a <table> inside the <div> to put the <tr> rows into.
It would help if you would show that <div>'s contents, expanded out. At least one level.
***********
But it is clear that this page is being generated by ASP.NET. Wouldn't it be easier to change the ASP.NET code to do this, rather than trying to do it with JavaScript??