Forkman: yes, all is possible.
For making it so that the Who's Online shows it when users are looking at the Quotes List, use FireFly's excellent "Add Who's Online Locations from your Admin Panel" hack - I'm using that and it works great with the quote list.
For making the default order go by ID rather than alphabetical, just find this bit of code (around line 92 in the default quotelist.php):
PHP Code:
if ($orderby=="") {
$orderby="letter,name";
}
And replace "letter,name" with "id". That way it'll sort by ID by default. If you want to reverse the order from what you get now, look at the three lines below these in quotelist.php, for they will define your default ORDER DIRECTION.
G'luck! :up: