Flash getURL to launch an exe

hi–

i have a flash animation that i want to act as a link to launch an exe. however, in IE, it’s giving me a yellow band for security issues. if the url is not an exe, it works fine. any thoughts?

basically, in the html, i have the following

[size=1]<object classid=“clsid:d27cdb6e-ae6d-11cf-96b8-444553540000” codebase=“http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0” width=“215” height=“161” id=“flashBannerTest” align=“middle” VIEWASTEXT>
<param name=“allowScriptAccess” value=“sameDomain” />
<param name=“movie” value=“img/test.swf?onTag=javascript:doThis();&clickTag=http://this.exe” />
<param name=“quality” value=“high” />
<param name=“bgcolor” value="#ffffff" />
<embed src=“img/test.swf?onTag=javascript:doThis();&clickTag=http://this.exe” quality=“high” bgcolor="#ffffff" width=“215” height=“161” name=“test” align=“middle” allowScriptAccess=“sameDomain” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” />
</object>

in the javascript:

function doThis () {

location.href(‘http://this.exe’);

}
[/size]