//Função responsável pela exibição de arquivos swf
<!--
Flash.automatic(false);
//-->

function exibe_flash(swf,width,height) {
	var flash = "";
	flash += '<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'" id="charge">';
	flash += '<param name="movie" value="'+swf+'" />';
	flash += '<param name="wmode" value="transparent" />';
	flash += '<param name="quality" value="high" />';
	flash += '<embed src="'+swf+'" swliveconnect="true" name="charge" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>';
	flash += '</object>';
	document.write(flash);
}

function exibe_musica(musica,width,height) {
	var flash = "";
	flash += '<object id="MediaPlayer1" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" type="application/x-oleobject" width="'+width+'" height="'+height+'">';
	flash += '<param name="FileName" value="http://p.audio.uol.com.br/charges/'+musica+'" />';
	flash += '<param name="animationatStart" value="TRUE" />';
	flash += '<param name="transparentatStart" value="FALSE" />';
	flash += '<param name="autoStart" value="true" />';
	flash += '<param name="autoSize" value="false" />';
	flash += '<param name="showStatusBar" value="true" />';
	flash += '<param name="showControls" value="true" />';
	flash += '<param name="showDisplay" value="false" />';
	flash += '<embed type="application/x-mplayer2" pluginspage="mms://www.microsoft.com/windows/windowsmedia/intl/download/default.asp?DispLang=br" src="http://p.audio.uol.com.br/charges/'+musica+'" name="MediaPlayer1" autostart="True" showcontrols="True" showdisplay="True" width="'+width+'" height="'+height+'"></embed>';
	flash += '</object>';
	document.write(flash);
}
