Ok I found a better way to do it with a piece of javascript. I've uploaded it here:
http://www.square-bea.../lindenlea/linden.htm
Basically, I just added this to the bottom.
<SCRIPT language="JavaScript">
if (navigator.appName == "Netscape" && navigator.appVersion.indexOf("Win") > 0)
{
document.writeln("<embed type=application/x-mplayer2 pluginspage=http://www.microsoft.com/Windows/
MediaPlayer/
Name=MediaPlayer src=lindenlea.mid AutoStart=True ShowStatusBar=0 HEIGHT=27 WIDTH=80></embed>");
}
else if (navigator.appVersion.indexOf("Win") > 0)
document.writeln("<BGSOUND SRC=lindenlea.mid LOOP=INFINITE>");
else
document.write( '<embed src = "lndenlea.mid" autostart="true" hidden="true" loop="true" ></embed>' );
</SCRIPT>
I also rewrote your webpage to make it over 85% smaller. Publisher is known for adding tons and tons unnecessary code and isn't really ideal for writing web pages.