<!--
//Função responsável pela exibição de arquivos swf

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);
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->

function switch_status(campo,link)
   {
     if (document.getElementById(campo).style.display == 'none')
      {
        document.getElementById(campo).style.display = "";
		document.getElementById(campo + "_bla").style.backgroundColor='#F0F0F0';
		document.getElementById(campo + "_bla").style.color='#c40404';
        document.getElementById(link).src = switch_minus.src;
      }
     else
      {
        document.getElementById(campo).style.display = "none";
		document.getElementById(campo + "_bla").style.backgroundColor='#DFDFDF';
		document.getElementById(campo + "_bla").style.color='#666666';
        document.getElementById(link).src = switch_plus.src;
      }
   }
    <!--
  switch_plus = new Image();
  switch_plus.src = './imagens/expandir.jpg';

  switch_minus = new Image();
  switch_minus.src = './imagens/minimizar.jpg';
  	-->
	
	