<!--
document.write(
'<style>'
+'input'
+' { '
+'background-color: bkgrnd; '
+'} '
+'</STYLE>'


+'<embed name="midi" src="'
+mdnm
+'.mid" NOSAVE="true" width="0" height="0">'


+' <form name="musicControl"><table   border="1" cellspacing="0" cellpadding="0"  >'
+'<tr>'
+'<td ><table background="'
+backimage
+'" bgcolor="'
+bkgrnd
+'" border="0" ><tr><td><font color="'
+txt
+'" size="1" face="arial"><b>Music Control</b></font></td>'
+'<td ><input type="radio" name ="music_1" onClick="musicOff();"></td><td><font color="'
+txt
+'" size="1" face="arial"><b>off</b></font></td>'
+'<td>'
+'<input type="radio" name ="music_2" onClick="musicOn();" checked></td>'
+'<td><font color="'
+txt
+'" size="1" face="arial"><b>on</b></font></td></tr></table></td>'
+'</tr>'
+'</table>'
+'</form>'
)


function musicOff()
{
  var the_box = window.document.musicControl.music_1;
  if (the_box.checked == true) 
  {
    window.document.musicControl.music_2.checked = false;
document.midi.stop()
  }

}
function musicOn() 
{ var the_box = window.document.musicControl.music_2;
 if (the_box.checked == true) 
{ window.document.musicControl.music_1.checked = false;
 document.midi.play()
 } }

//-->
