function execEventSound(param){
  thisMovie("eventSoundPlayer").SetVariable("playSoundEffect", param);
  thisMovie("eventSoundPlayer").Play();
  return;
}
function thisMovie(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) { return window[movieName]; }
    else { return document[movieName] }
}