Здравствуйте
Есть яваскрипт который открывает неблокируемый попап
если на странице создать ссылку при нажатии на которую запускается этот скрипт - все отлично - попап открывается а вот если из флэша использовать getURL - блокируется попап
P.S. скрипт взял отсюда
http://www.htmlweb.ru/java/js.php
код флэшки

Код AS1/AS2:
BTN.onPress=function(){
getURL('javascript:InWin("cookie.php");');
}
Код страницы

Код:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=koi8-r" />
<title>getURL</title>
<script type="text/javascript" src="js/code.js"></script>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="livejasmin.js"></script>
<script type="text/javascript" src="js.js"></script>
</head>
<body bgcolor="#ffffff">
<A Href="cookie.php" onclick='alert("this="+this);return InWin(this);' title="Пример использования Cookie на Java Script"><P class=ex>ОТСЮДА СРАБАТЫВАЕТ !!!</A>
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<div style="z-index: -1; width:520px; float:left; border-top:1px solid white; border-right:1px solid white; border-left:1px solid white;">
<object width="520" height="420" style="position:relative; z-index:1;">
<param name="movie" value="getURL.swf">
<embed src="getURL.swf" wmode="opaque" style="position:relative;" width="520" height="420" flashvars="file=instrument.flv"></embed>
</object>
</div>
</body>
</html>