/*Cross Browser Sound Script
  Copyright © John Davenport Scheuer
  Permission granted for use
  This credit must stay intact*/
//////////No need to Edit Script/////////
function e_sound(soundobj) {
if((!document.all)&&(document.getElementById)){
  var thissound= eval("document."+soundobj);
  thissound.Play();
}
else if(document.all){
var a=eval("document.all."+soundobj+".src");
document.all.sound.src=a;
}
else
return;
}
