function turn_mic_on()
{
   var mic = document.getElementById('gold-show-div');
   mic.style.backgroundImage="url(/img/img-mic-on.png)";
}

function turn_mic_off()
{
   var mic = document.getElementById('gold-show-div');
   mic.style.backgroundImage="url(/img/img-mic-off.png)";
}

