function Rodar_Jogo(Arquivo, Largura, Altura)
{
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ');
	document.write(' ID="flashJogo" WIDTH="' + Largura + '" HEIGHT="' + Altura+ '" ALIGN="">');
	document.write(' <PARAM NAME=movie VALUE="' + Arquivo + '">');
	document.write(' <PARAM NAME=quality VALUE="Autohigh">');
	document.write(' <PARAM NAME=wmode VALUE="Transparent">');
	document.write(' <PARAM NAME=bgcolor VALUE="">');
	document.write(' <PARAM NAME=scale VALUE="showall">');
	document.write(' <PARAM NAME=PLAY VALUE=true>');
	document.write(' <PARAM NAME=LOOP VALUE=true>');
	document.write(' <PARAM NAME=EmbedMovie VALUE="false">');
	document.write(' <PARAM NAME=BASE VALUE="">');
	document.write(' <PARAM NAME=SALIGN VALUE="">');
	document.write(' <PARAM NAME=FlashVars VALUE="">');
	document.write(' <PARAM NAME=MENU VALUE="false">');
	document.write(' <PARAM NAME="allowScriptAccess" VALUE="sameDomain">');
	document.write(' <EMBED src="' + Arquivo + '" quality="Autohigh" wmode=Transparent bgcolor="" ');
	document.write(' swLiveConnect=false WIDTH="' + Largura + '" HEIGHT="' + Altura + '" NAME="flashJogo" ALIGN=""');
	document.write(' allowScriptAccess="sameDomain"');
	document.write(' scale="showall"');
	document.write(' flashvars=""');
	document.write(' menu="false"');
	document.write(' PLAY=true');
	document.write(' LOOP=true');
	document.write(' EmbedMovie=false');
	document.write(' BASE=""');
	document.write(' SALIGN=""');
	document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
	document.write(' <NOEMBED>');
	document.write('  <IMG SRC="" WIDTH="' + Largura + '" HEIGHT="' + Altura+ '" BORDER=0>');
	document.write(' </NOEMBED>');
	document.write(' </EMBED>');
	document.write('</OBJECT>');
}


