playbksound(); // Sound Control function $$(name) { return document.getElementById(name); } function switchsound() { au = $$('bgsound'); ai = $$('sound_image'); if (au.paused) { au.play(); ai.src = "images/music.png"; pop_up_note_mode = true; popup_note(); $$("music_txt").innerHTML = "ON"; $$("music_txt").style.visibility = "visible"; setTimeout(function () { $$("music_txt").style.visibility = "hidden" }, 2500); } else { pop_up_note_mode = false; au.pause(); ai.src = "images/music_off.png"; $$("music_txt").innerHTML = "OFF"; $$("music_txt").style.visibility = "visible"; setTimeout(function () { $$("music_txt").style.visibility = "hidden" }, 2500); } } function playbksound() { var audiocontainer = $$('audiocontainer'); if (audiocontainer != undefined) { audiocontainer.innerHTML = ''; } var audio = $$('bgsound'); audio.play(); sound_div = document.createElement("div"); sound_div.setAttribute("ID", "cardsound"); sound_div.style.cssText = "position:absolute;right:20px;top:14px;z-index:157;visibility:visible;"; sound_div.onclick = switchsound; if (document.body.offsetWidth > 400) { bg_htm = ""; box_htm = "
"; txt_htm = "
" } else { bg_htm = ""; box_htm = "
"; txt_htm = "
" } sound_div.innerHTML = bg_htm + box_htm + txt_htm; document.body.appendChild(sound_div); } //->