function playSound( sound ) {
    document.getElementById( sound ).innerHTML= '<embed src="/images/boing.wav" hidden="true" autostart="true" loop="false" />';
}

function EvalSound(soundobj) {
    var thissound = document.getElementById(soundobj);
        thissound.play();
    }

