function abrePlayerFiber(id_musica, id_artista, refElemento){
	fechaPlayerBlogger();
	// não tem logo
	novoHtml = '<div id="fiberAudioPlayer" style="width: 411px; height: 320px; border: 0px; margin-top: 15px; display: block;">';
	novoHtml += '	<iframe src="http://fiberonline.uol.com.br/bdoplayer/fo_player_blog.php?id_musica='+id_musica+'&id='+id_artista+'" scrolling="no" border="0" frameborder="no" framespacing="0" marginwidth="0" marginheight="0" style="width: 411px; height: 234px; border: 0px;"></iframe>';
	novoHtml += '	<a href="#" onclick="fechaPlayerBlogger()" style="text-align: right; display:block;">Fechar</a>';
	novoHtml += '</div>';
	
	$(refElemento).hide();
	$(refElemento).after(novoHtml);
}
function abrePlayerBlogger(id_musica, id_artista, refElemento){
	fechaPlayerBlogger();
	
	novoHtml = '<div id="fiberAudioPlayer" style="width: 411px; height: 320px; border: 0px; margin-top: 15px; display: block;">';
	novoHtml += '	<div style="background-color: #0a2137; height: 72px; margin: 0px; padding: 0px;"><a href="http://fiberonline.uol.com.br"><img src="http://fiberonline.uol.com.br/bdoplayer/fiberonline.gif" style="border: none; margin-top: 17px; margin-left: 15px;"></a></div>';
	novoHtml += '	<iframe src="http://fiberonline.uol.com.br/bdoplayer/fo_player_blog.php?id_musica='+id_musica+'&id='+id_artista+'" scrolling="no" border="0" frameborder="no" framespacing="0" marginwidth="0" marginheight="0" style="width: 411px; height: 234px; border: 0px;"></iframe>';
	novoHtml += '	<a href="#" onclick="fechaPlayerBlogger()" style="text-align: right; display:block;">Fechar</a>';
	novoHtml += '</div>';
	
	$(refElemento).hide();
	$(refElemento).after(novoHtml);
}
function fechaPlayerBlogger(){
	$('.linkFiberAudioPlayer').show();
	$('#fiberAudioPlayer').remove();
}
function abrePlayerYoutube(id, ref){
	// fecha instancia anterior
	fechaPlayerYoutube();
	
	var htmNovo = '<div id="playerYoutube">';
	htmNovo = htmNovo + '<a href="#" class="fechaPlayer" onClick="fechaPlayerYoutube()">fechar</a>';
	htmNovo = htmNovo + '<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/'+id+'&rel=0&color1=0x0a2238&color2=0x27384f&border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/'+id+'&rel=0&color1=0x0a2238&color2=0x27384f&border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object>';
	htmNovo = htmNovo + '</div>';

	$(ref).after(htmNovo);
}

function fechaPlayerYoutube(){
	$('#playerYoutube').remove();
}