I made a minor change to 1.5rc2 ? links module, example:
http://www.trendvue.com/links.php
I added a table of contents at the top, and in page links back to _top at each header.
Code follows - it shouldn't be hard to add to the current or next release and, I think, makes it easier to navigate a big links section.
Mike
$result = dbquery("SELECT category, count(category) as total from links group by category ORDER BY category asc"

;
$nrows = mysql_num_rows($result);
if ($nrows != 0) {
$tmp .= "Our Bookmarks<br><p>The following links are to sites that we have found to be personally useful. Click on any category title to jump to that section of the list, or just scroll through the whole list.</p>";
$colmax = 3;
$rowmax = abs(ceil($nrows/$colmax));
$tmp .= "n";
for ($i = 0; $i ";
for ($j = 0; $j ยทย <a href="#{$A["category"]}">{$A["category"]}</a> ({$A["total"]})";
}
$tmp .= "";
}
$tmp .= "n<br><hr>";
}