function makeSWF(width,height,movie,DIV) {
	variavelMeu = '<object style="z-index:1" wmode=transparent classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+width+'" height="'+height+'">';
	variavelMeu += '<param name="movie" value="'+movie+'">';
	variavelMeu += '<param name="quality" value="high">';
	variavelMeu += '<embed style="z-index:1" wmode=transparent src="'+movie+'" quality="high"'
	+' pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed> </object>';

	document.getElementById(DIV).innerHTML = variavelMeu;
}