I have a question regarding PageRank and internal links. Let's assume there is a homepage (like a forum) that has 100 links to 100 different topics. In addition to the 100 links to each topic, there is an extra link to the last post in each topic. So in total there are 100+100=200 links on the page. The structure is like below.
My question is - what is the best practice to make sure the PageRank is optimized on the page and is not 'lost' by too many links. Does Google count the main link to the topic and link to an anchor within this topic as two separate links? So the ultimate question is - from ranking/PageRank point of view, would it be best to just remove the links to the last post or they can be kept as they are? Thank you.
<div id="discussions">
<div>
<a href="example.com/topic-1.html">Topic 1</a>
<a href="example.com/topic-1.html#lastpost">Last Post in Topic 1</a>
</div>
<div>
<a href="example.com/topic-2.html">Topic 2</a>
<a href="example.com/topic-2.html#lastpost">Last Post in Topic 2</a>
</div>
....
....
<div>
<a href="example.com/topic-100.html">Topic 1</a>
<a href="example.com/topic-100.html#lastpost">Last Post in Topic 100</a>
</div>
</div>