function carregaFlash(caminho,par,largura,altura)
{
	i=Math.round(Math.random()*10000);
	if(par=='')
	{
		caminho=caminho+'?i='+i
	}
	else
	{
		caminho=caminho+'?i='+i+'&'+par
	}
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="'+largura+'" height="'+altura+'" id=swfmovie>');
	document.write('<param name="movie" value="'+caminho+'">');
	document.write('<param name="quality" value="best">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<param name="menu" value="false">');
	document.write('<param name="SeamlessTabbing" value="false">');
	document.write('<param name="swLiveConnect" value="true">');
	document.write('<param name="play" value="true">');
	document.write('<param name="allowFullScreen" value="true">');
	document.write('<embed NAME=swfmovie src="'+caminho+'" allowFullScreen="true" wmode="transparent" SeamlessTabbing="false" swLiveConnect=true quality="best" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" play="true" width="'+largura+'" height="'+altura+'"></embed>');
	document.write('</object>');
}
