function writeSoundPlayer(flashURL,fileName,style)
  {
    document.write('<object type="application/x-shockwave-flash" data="'+flashURL+'" style="'+style+'">');
    document.write('<param name="movie" value="'+flashURL+'?myFileName='+fileName+'">');
    document.write('<param name="quality" value="high">');
    document.write('<param name="bgcolor" value="#FFFFFF">');
    document.write('</object>');
  }