function EvalSound(soundobj) {
  var thissound= eval("document."+soundobj);
  thissound.Play();
}

document.observe("dom:loaded", function() {
 EvalSound('sound1');
});
