<!--
// This code is a simplification of the example
// given at: http://jdstiles.com/java/sounds.html


mySound = "dading.mp3";
document.write('<BGSOUND ID="auIEContainer">')
onload=auPreload;
function auPreload() {
    s = "<DIV ID='auEmb' STYLE='position:absolute;'></DIV>";
    document.body.insertAdjacentHTML("BeforeEnd", s);
    auEmb.innerHTML = "<EMBED SRC='"+mySound+"' AUTOSTART='FALSE' HIDDEN='TRUE'>";
    auCon = document.all.auIEContainer;
    auCon.control = auCtrl;
    }
function auCtrl() {this.src = mySound;}
function playSound(){ auCon.control();}

//-->
