//--script to set up for B & B Music Page


//=== function to place an track name and optional emff music player on the page
//------mtitle = the song title
//------mname = the filename of the mp3 file
//------if mname = null the player will be omitted
function BBtrack(mtitle,mname)
  {
    document.write('<li>'+mtitle)
    if (mname != "")  // if filename is not null
      {
        mpsrc="src=music/"+mname+".mp3&autostart=no&groupname=group1"
        document.write('<object type="application/x-shockwave-flash" data="Players/emff_silk_button.swf" width="16" height="16">');
        document.write('<param name="movie" value="Players/emff_silk_button.swf">');
        document.write('<param name="bgcolor" value="#909090">');
        document.write('<param name="FlashVars" value="'+mpsrc+'">');
//        document.write('<param name="FlashVars" value="src=music%2Fnights-samp.mp3&amp;autostart=no&amp;groupname=group1">');
        document.write('</object>');                 
      }
    document.write('</li>')
  }



