function musicLoad(path)
{
  swfobject.embedSWF(path, "sound", "0", "0", "9.0.0");
}
function musicPlay (file, count)
{ 
  if (!count)
  {
    count=1;
  }

  document.getElementById('sound').playMusic(file, count);
}
function musicStop ()
{
  document.getElementById('sound').stopMusic();
}