function PlaySound(soundobj) {
  var thissound= eval("document."+soundobj);
  thissound.Play();
}

function StopSound(soundobj) {
  var thissound= eval("document."+soundobj);
  thissound.Stop();
}