I've inherited an ASP page which displays lots of data. I can get the data to display but I need help on formating it.

The data is grouped and displayed in tables, there is a lot of the following lines:
Code:
Response.Write("</table></center></div>" & vbCrLf)

	Response.Write("<table border='0' width='100%'>" & vbCrLf)
I want to end one table and start a new one (in between two existing tables). When I add the above lines to end one and start another the formating is all to pot. Can anyone help?