function jsPlay(soundobj) {
   var thissound= eval("document."+soundobj);
   try { thissound.Play();
       }
 catch (e) {
          thissound.DoPlay();
          }
}
