нет. содержание индекса, в котором ссылка:

Код:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<!-- <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /> -->
<title>Untitled</title>
<style type="text/css">
</style>
</head><body><script type="text/javascript">
function openWin(src, w, h, name, prop, txt){
var o2s = function(o){
var str = "";
for(var i in o) str+=(i+"="+o[i]+",");
str= str.substr(0,(str.length-1));
return str;
};
if (self.screen) {
sw=screen.width
sh=screen.height;
} else if (self.java) {
var j=java.awt.Toolkit.getDefaultToolkit();
var s=j.getScreenSize();
sw=s.width
sh=s.height;
}
sw = sw||1024;
sh = sh||768;
w = w||sw/2;
h = h||sh/2;
var o = {
resizable:'yes',
menubar:'no',
status:'yes',
scrollbars:'yes',
address:'no',
width:w,
height:h,
left:((sw-w)/2),
top:((sh-h)/2)
};
if(typeof prop == "object"){
for(var i in prop)
o[i] = prop[i].toString();
prop = "";
prop = o2s(o);
} else {
prop = prop||o2s(o);
}
src = src||"about:blank";
name = name ||"_blank";
win = window.open(src, name, prop);
if(txt)
win.document.write(txt);
return win;
}
</script>
<a href="http://ya.ru/" onclick="openWin(this.href, 200, 200, null, {resizable:'no'}).focus();return false;">ссылка</a>
</body>
</html>
содержание мэйн хтмл, что-то вроде:

Код:
<html>
<head>
<style type="text/css">
*{margin:0;padding:0;}
HTML,BODY{height:100%}
</style>
...
<object width="100%" height="100%" ...
...
</html>
а флешка тут ни при чем.