in reply to Control the Web browser from the client-side?

I haven't done much with LWP but I imagine that you could
have a perl script that used LWP to navigate links to get the
URL's and then do a system( netscape, $url ) ...

psuedo code:
... for ( how ever long ) { @links = getlinks( $theWebPage ); foreach $link (@link) { system( netscape, $link ); } } ...
I dunno just a guess.