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();document.body.removeChild(sound2Embed);sound2Embed.removed=true;}}
