Made the webserver a bit smarter. It handles running as root properly (only allows it if user/group specified and port < 1024) and directory listing is massively smarter.
function expand_track(tid)
{
var div = document.getElementById('track_inner_' + tid);
if ( div.style.display == 'block' )
{
div.style.display = 'none';
}
else
{
div.style.display = 'block';
}
}