   var refElementoAudioEmbed = null;
   var refElementoAudioHTML5 = null;
   function playCaptcha(navegadorIE, url) {
        if (navegadorIE === true){
            if (refElementoAudioEmbed){
                document.body.removeChild(refElementoAudioEmbed);
                refElementoAudioEmbed = null;
            }
            refElementoAudioEmbed = document.createElement("embed");
            refElementoAudioEmbed.setAttribute("hidden", true);
            refElementoAudioEmbed.setAttribute("enablejavascript", true);
            refElementoAudioEmbed.setAttribute("autostart", true);
            refElementoAudioEmbed.setAttribute("src", url);
            document.body.appendChild(refElementoAudioEmbed);
        }
        else{
			if (refElementoAudioHTML5 === null){
				refElementoAudioHTML5 = document.createElement("audio");
				document.body.appendChild(refElementoAudioHTML5);
			}
			refElementoAudioHTML5.src = url;
			refElementoAudioHTML5.load();
			refElementoAudioHTML5.play();
        }				   
   }
