        // =========================================================================
        // BEGIN MP3 PLAYER FUNCTIONS
        // =========================================================================
        var all_nodes = new Array();
        var all_mp3s = new Array();
        var all_titles = new Array();
        var node_count = 0;

        function create_visible_element(parent_e,button_type) {
            if (button_type=='stop') {
                var new_color = 'green';
                var button_show = 'play';
            } else {
                var new_color = 'blue';
                var button_show = 'stop';
            }

            parental = document.getElementById(parent_e);

            //  Create the table
            var thetable = document.createElement('table');
            thetable.setAttribute('id', parent_e+'_child');


            //  Create the table tr
            var thetr = document.createElement('tr');
            if (new_color=='blue') {
                parental.onclick = new Function("clear_all('none');");
            } else {
                try{
                parental.onclick = new Function("clear_all('"+parent_e+"');");
                }catch(e){}
            }


            //  Create the table ROW
            var thetd = document.createElement('td');

            //  Create the clickable DIV
            var thediv = document.createElement('div');
            innerhtmlstr = '';
            innerhtmlstr+= '            <table>';
            innerhtmlstr+= '              <tr>';
            innerhtmlstr+= '                <td><img src="/images/audio_'+button_show+'.gif" style="border:0px;cursor:pointer;">';
            innerhtmlstr+= '                <td align="right"><span style="font-size:75%;color:white;text-decoration:none;">'+button_show+'&nbsp;</span></td>';
            innerhtmlstr+= '                <td align="left"><span style="font-size:75%;color:white;text-decoration:none;">&nbsp;&nbsp;&nbsp;'+all_titles[parent_e]+'</span></td>';
            innerhtmlstr+= '              </tr>';
            innerhtmlstr+= '             </table>';

            if (new_color=='blue') {
                innerhtmlstr += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"' +
                'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"' +
                'width="1" height="1" id="player" align="middle">' +
                '<param name="wmode" value="transparent" />' +
                '<param name="allowScriptAccess" value="sameDomain" />' +
                '<param name="flashVars" value="theLink='+all_mp3s[parent_e]+'" />' +
                '<param name="movie" value="/playtagger.swf" /><param name="quality" value="high" />' +
                '<embed src="/playtagger.swf" flashVars="theLink='+all_mp3s[parent_e]+'"'+
                'quality="high" wmode="transparent" width="1" height="1" name="player"' +
                'align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"' +
                ' pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
            }
            try {
                parental.innerHTML=innerhtmlstr;
            } catch(e) { }
        }

        function clear_all(new_player) {
            //	global all_nodes;
            i = 0;
            for (var i = 0; i <= 2; i++) {
                the_parent_table = document.getElementById(all_nodes[i]);
                if (all_nodes[i]!=new_player) {
                    goodbye_element(all_nodes[i]);
                    create_visible_element(all_nodes[i],'stop');
                } else {
                    goodbye_element(all_nodes[i]);
                    create_visible_element(new_player,'play');
                }
            }
        }

        function goodbye_element(cya) {
            try{
            document.getElementById(cya).innerHTML='';
            }catch(e){}
        }
        // =========================================================================
        // END MP3 PLAYER FUNCTIONS
        // =========================================================================
