Yes, there is! Here is the trick:
Place your flash banner beside (not inside) the anchor tag and set its wmode="opaque". Also you need to set the position, display and z-index styles of your anchor tag.
<div style="position:relative;">
<a href="http://your-target-url" style="position:absolute; top:0; left:0; display:block; width:100%; height:100%; z-index:100;"> </a>
<embed src="your-flash-banner" type="application/x-shockwave-flash" wmode="opaque"></embed>
</div>
Edited: To work on IE you have to make it abit dirty. Add one of these styles to the anchor tag too:
background:url(spacer.gif);
where spacer.gif is a 1px transparent gif.
or
background-color:#ffffff; /* the background */
filter:alpha(opacity=0); /* Internet Explorer */
-moz-opacity:0; /* Mozilla 1.6 and below */
opacity: 0; /* newer browser and CSS-3 */
This is another IE bug that does not accept clicks on transparent links with display:block.