/*Toggle Sound Script © John Davenport Scheuer
  as first seen in www.dynamicdrive.com/forums (user name:
  jscheuer1). Visit http://www.dynamicdrive.com for 100's
  of DHTML scripts.  This credit must remain for legal use.
  */

var sndEl="http://www.gsrbaptistchurch.org/media/AlreadyDone_f.swf"  //Set to name and path of your sound file

function toggleSound(){
if (document.all&&document.all.sound&&document.all.sound.src!=='')
document.all.sound.src=''
else if (document.getElementById&&document.getElementById('snd')){
sndEl=document.getElementById('snd')
document.getElementById('sndC').removeChild(sndEl)
}
else if (document.all&&document.all.sound&&document.all.sound.src=='')
document.all.sound.src=sndEl
else if (document.getElementById)
document.getElementById('sndC').appendChild(sndEl)
}
