<div>For what it's worth, I finally figured out my wget problem.  </div>
<div> </div>
<div>
<div>I used Lynx to grab the source of 2600's webpage, grep'd out the URLs in the pull down menus, sed'd these URL fragments into real URLs, and then piped these URLs in a file that was wget-friendly so I could get some MP3s.
</div>
<div> </div>
<div> </div>
<div><font face="Courier New"><font face="Courier New">lynx -source <a href="http://www.2600.com/offthehook/archive_ra.html">http://www.2600.com/offthehook/archive_ra.html</a> | grep /offthehook | sed 's_">.*__g' | sed 's_ __g' | sed 's_<optionvalue=".._http://www.2600.com_g' | sed 's_<option selected value=".._http://www.2600.com_g' | sed 's_<optionselectedvalue=".._http://www.2600.com_g' | sed 's_\t__g' > OTH
</font></font></div>
<p><font face="Courier New"><font face="Courier New">wget -r -l1 -t1 -nd -N -A.mp3 -erobots=off -i OTH</font></font></p></div>