function pokaz_flash( nazwa , width , height, wyrownaj ) {
	if (AC_FL_RunContent == 0) {
		alert("This page requires AC_RunActiveContent.js. In Flash, run \"Apply Active Content Update\" in the Commands menu to copy AC_RunActiveContent.js to the HTML output folder.");
	} else {
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0',
			'width', width,
			'height', height,
			'src', nazwa,
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', wyrownaj,
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'devicefont', 'false',
			'id', nazwa,
			'bgcolor', '#0c2e6e',
			'name', nazwa,
			'menu', 'false',
			'allowScriptAccess','sameDomain',
			'movie', nazwa,
			'salign', ''
			); //end AC code
	}
}