// Função que inclui no código a chamada ao Flash e exibe o spanSom para que o usuário
// digite os números do idSom
function playCaptcha(container, idSom, spanSom) 
{
	str = '';
	str += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"'
	str += ' codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"'
	str += ' width="1"'
	str += ' height="1"'
	str += ' id="sound"'
	str += ' align="middle">'
	str += '<param name="allowScriptAccess" value="sameDomain" />'
	str += '<param name="movie" value="/scripts/srf/intercepta/captcha.swf" />'
	str += '<param name="quality" value="high" />'
	str += '<param name="bgcolor" value="#ffffff" />'
	str += '<embed src="/scripts/srf/intercepta/captcha.swf" quality="high" bgcolor="#ffffff"'
	str += ' width="1"'
	str += ' height="1"'
	str += ' name="sound"'
	str += ' align="middle"'
	str += ' allowScriptAccess="sameDomain" type="application/x-shockwave-flash"'
	str += ' pluginspage="http://www.macromedia.com/go/getflashplayer" />'
	str += '</object>'

	document.getElementById(container).innerHTML=str;
	document.getElementById(spanSom).style.visibility="visible";
	//document.getElementById("spanLabelSom").style.visibility="visible";
	document.getElementById(idSom).focus();


	return void(0);
}

