/usr/share/aat/INC/AAT_popup.js is in octopussy 1.0.6-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | function popup(mylink, name)
{
if (! window.focus)return true;
var href;
var width=500;
var height=200;
var top=(screen.height-height)/2;
var left=(screen.width-width)/2;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, name,"top="+top+",left="+left+",width="+width+",height="+height+",resizable=yes");
return false;
}
|