function showAnimacao (id) {

	var animacaoEmbed;

//	animacaoEmbed =  '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="400" height="300" id="animacao_'+id+'_'+tipo+'" align="middle">';
//	animacaoEmbed += '<param name="allowScriptAccess" value="sameDomain" />';
//	animacaoEmbed += '<param name="movie" id="paramMovie" value="swf/animacao_'+id+'_'+tipo+'.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#99cccc" /><embed src="swf/animacao_'+id+'_'+tipo+'.swf" id="embedMovie" quality="high" bgcolor="#99cccc" width="400" height="300" name="animacao_'+id+'_'+tipo+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
//	animacaoEmbed += '</object>';

	animacaoEmbed = '<scr'+'ipt type="text/javascript">';
	animacaoEmbed += 'var s1 = new SWFObject("flvplayer.swf","single","400","300","7");';
	animacaoEmbed += 's1.addParam("allowfullscreen","true");';
	animacaoEmbed += 's1.addVariable("file","video.flv");';
	animacaoEmbed += 's1.addVariable("image","preview.jpg");';
	animacaoEmbed += 's1.write("player1");';
	animacaoEmbed += '</scr'+'ipt>';


	var divAnimacao = document.getElementById('divAnimacao');
	divAnimacao.innerHTML = animacaoEmbed;

	if (tipo=='som') {
		tipo = 'leg';
	} else {
		tipo = 'som';
	}

}

function showURL(data) {
	var url = document.getElementById('url');
	url.value = 'http://www.animatunes.com.br/videos/?a='+data;

	var urlr = document.getElementById('url');
	var urlrvalue = urlr.value;
	urlr.value = urlrvalue.replace(/popup=1&/, "");
}


function showEmbed(data) {
	var embed = document.getElementById('embed');
	embed.value = '<script src="http://www.animatunes.com.br/videos/embed.php?a='+data+'" type="text/javascript"></script>';
}



function selectAll(textField)
{
var text_val=document.getElementById(textField);
text_val.focus();
text_val.select();
}
