URLMenu TiVo app
David Blackledge
3/18/2010
http://David.Blackledge.com

Reads urlmenu.properties which must be in the "user.home" java system property's directory... 
e.g. "c:\documents and settings\Owner"
if that property isn't set, it looks in "/" which would correspond to e.g. "c:\"

urlmenu.properties should have entries like so:
My\ First\ Menu=http://url.to.be.executed.com/with/other?information
My\ Second\ Menu=http://url.to.be.executed.com/with/other?information

Notice that spaces (and = and :) have to be escaped with backslash if they're part of the label.

The list will be sorted by the label names, so you can either put numbers in front, 
or do pseudo-hierarchies like:
house\ kitchen\ lights\ on=...
house\ kitchen\ lights\ off=...
house\ kitchen\ blender\ on=...
house\ bedroom\ lights\ on=...

Enjoy.