hi,
if some site uses this code
<script language="JavaScript">
var url = "http://www.aaaa.com";
var wh = 'width=250,height=250';
var time = 10;
//////////
var winopop;
window.onload = function(){
winopop = window.open(url,'news',wh);
winopop.focus();
window.setTimeout(function(){winopop.close()},time*1000);
}
</script>
they can open the site http://www.aaaa.com in a window for 10 sec and then auto close that window.
is there way to stop the window from closeing by adding a code inside the pages of www.aaaa.com