<!--
    function FormShield_PlaySound(id, url, type)
    {
        var ctl = document.getElementById(id);
        var html = "<object classid='clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95' type='application/x-oleobject' height='0' width='0'>" +
            "    <param name='autoStart' value='true' />" +
            "    <param name='fileName' value='" + url + "' />" +
            "    <param name='playCount' value='1' />" +
            "    <param name='volume' value='0' />" +
            "    <embed src='" + url + "' type='" + type + "' autostart='true' hidden='true' loop='false' playcount='1' volume='100' height='0' width='0' />" +
            "</object>";
        
        ctl.innerHTML = html;
    }
// -->
