function open_mp3_window(path, title)
{
  while ( (pos = title.indexOf("`")) >=0 ) { 
    title = title.substring(0,pos) + "'" 
          + title.substring(pos+1,title.length); 
  }

  mw=window.open('','','toolbar=no,scrollbars=yes,width=480,height=300');
  mw.document.write('<H2>'+title+'</H2>\n');
  mw.document.write('<h3>To start the sermon, press the play button.</h3>\n');
  mw.document.write('<font face="verdana, helvetica" size=2>');
  mw.document.write('<EMBED SRC="'+path+'" AUTOPLAY="false">\n');
  mw.document.write('<table width=480>\n');
  mw.document.write('<P>Right-Click the link and choose "save target as" to <A HREF="');
  mw.document.write(path+'">');
  mw.document.write('Download</A> the sermon to your computer');
  mw.document.write('</table>\n');
  mw.document.write('</font>\n');
}
