function jukebox(){
var midis=new Array(
"song_001.mid","song_002.mid","song_003.mid","song_004.mid");
var settings='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,';
settings=settings+'resizable=no,width=100,height=100,screenX=0,screenY=20,left=0,top=20';
var z="<script>var track=0;";
z+="function next() {";
z+="document.embeds[track].stop();";
z+="track=(track==document.embeds.length-1)?0:track+1;";
z+="document.embeds[track].play();";
z+="document.title=document.embeds[track].src;};";
z+="function previous(){";
z+="document.embeds[track].stop();";
z+="track=(track==0)?document.embeds.length-1:track-1;";
z+="document.embeds[track].play();"
z+="document.title=document.embeds[track].src;}<"+"/script>";
z+="</head><body topmargin=0 bgcolor=white><table align=center><tr><td><a href='javascript:previous()'>";
z+="<img src='images/0previous.gif' alt='' border=0 width=32 height=25><";
z+="/a><img src='images/mfc.gif' width=29 height=86 alt=''><a href='javascript:next()'><img src='images/0next.gif' alt='' border=0 width=32 height=25><"+"/a></td></tr></table></body><"+"/html>"
jukebox=window.open("","jukebox",settings);
jukebox.resizeTo(200,160);
jukebox.document.writeln("<html><head><title>"+midis[0]+"</title>");
jukebox.document.writeln("<embed src=midis/"+midis[0]+" hidden=true autostart=true loop=false>");
for (j=1;j<midis.length;j++)
{jukebox.document.writeln("<embed src=midis/"+midis[j]+" hidden=true autostart=false loop=false>");};
jukebox.document.write(z);
jukebox.document.close();}
