/*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="82_wagner-ride-of-the-valkyries_0320.mp3"  //Set to name and path of the 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)
}
