function FlashCode_showflash1(flash_movie,width,height,flashVars)
{
var hasRightVersion="izé";

	if(hasRightVersion) {  // if we've detected an acceptable version


	    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
	    + 'width="'+width+'" height="'+height+'"'
	    + 'codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
	    + '<param name="movie" value="'+flash_movie+'" /><param name="FlashVars" value="'+flashVars+'" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#ff0000" />'
	    + '<embed src="'+flash_movie+'" FlashVars="'+flashVars+'" quality="high" scale="noscale" wmode="transparent" bgcolor="#ff0000" '
	    + 'width="'+width+'" height="'+height+'" name="flash" align="top"'
	    + 'play="true"'
	    + 'loop="false"'
	    + 'quality="high"'
	    + 'allowScriptAccess="sameDomain"'
	    + 'type="application/x-shockwave-flash"'
	    + 'pluginspage="https://www.macromedia.com/go/getflashplayer">'
	    + '<\/EMBED>'
	    + '<\/OBJECT>';
	    document.write(oeTags);   // embed the flash movie
	    document.close();
	  } else {  // flash is too old or we can't detect the plugin
	    var alternateContent = 'Az oldal megtekintéséhez Flash Player szükséges, mely letölthető ingyenesen '
		+ '<a href=https://www.macromedia.com/go/getflash/>erről a weboldalról</a>.';
	    document.write(alternateContent);  // insert non-flash content
	    document.close();
	}
}
