﻿var Sound = new Object();
Sound.play = function Sound_play(src) 
{
    if (!src) return false;
    this.stop();
    var elm;
    if (typeof document.all != "undefined") 
    {
        elm = document.createElement("bgsound");
        elm.src = src;
    }
    else 
    {
        elm = document.createElement("object");
        elm.setAttribute("data",src);
        elm.setAttribute("type","audio/x-wav");
        elm.setAttribute("controller","true");
    }
    document.body.appendChild(elm);
    this.elm = elm;
    return true;
}
Sound.stop = function Sound_stop() 
{
if (this.elm) 
{
this.elm.parentNode.removeChild(this.elm);
this.elm = null;
}
}
