QUOTE(grimpirate @ 21 Jul, 2008 - 11:47 PM)

I suggest you use a named anchor to get to the most current click. Simply HTML thing you can do. Read more on it
here.
Basically, wherever the new click occurs add in something like the following:
<a name="last">Whatever</a>
And then change the form's action attribute that you use to submit it to something like:
action="page.php#last"
Which will automatically scroll you to that link
I tried this. The problem with this is that the said links are at the bottom of the page, so when you expand the link, it still jumps and when you expand the next, it jumps again.
I need something that will expand, but not effect where you are on the page (smooth). I think this maybe can be done using Java, but I have tried to keep my site Java free. I also think that this could be done using CSS "display: none", but the points are going to be real lengthy and I would rather not have it load until it is called to.
If Java is the only way, then I will use it.