   
/**
  *  script courtesy of Reinier Zwitserloot 
  *  See blog: http://www.zwitserloot.com/2007/01/31/sound-in-webbrowsers-without-flash/
  *  View source at: http://www.zwitserloot.com/files/soundkit/soundcheck.html
**/ 
var sound2Embed = null;

function PlayMusic(sound) {
  
	if ( !sound2Embed ) {
		sound2Embed = document.createElement("embed");
		sound2Embed.setAttribute("src", sound);
		sound2Embed.setAttribute("hidden", true);
		sound2Embed.setAttribute("autostart", true);
	} 
	else 
	{
	StopMusic();
	document.getElementById('nextdiv').focus();
	}
	
	sound2Embed.removed = false;
	document.body.appendChild(sound2Embed);
}
			
function StopMusic() {
	if ( sound2Embed && !sound2Embed.removed ) {
	    sound2Embed.Stop();    // this really stops things!
		document.body.removeChild(sound2Embed);
		sound2Embed.removed = true;
	}
}


