function start_audio(id) {
    document.getElementById(id).currentTime = 0;
    document.getElementById(id).play();
}

function stop_audio(id) {
    document.getElementById(id).pause();
    document.getElementById(id).currentTime = 0;
}
