Comment 69 for bug 290867

Revision history for this message
In , Junkmailsux (junkmailsux) wrote :

OK. One problem resolved but it created another one. :(

First of all, I know this is somewhat unrelated so if you need to delete/move this, feel free.

I have a script that will open my browser window outside of my screen (left and top are negative) so I don't have to see the the menu bar and left section of a page. Just save a little real estate. It's been perfect for years but now that it'll open like it's supposed to, it opens the window at 0,0. Any ideas on how to fix this??

I got this script from a friend who's no longer with us and this kinda stuff is over my head! Thanks for the help!!

function popup(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'directories=0,status=0,toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=1365,height=705,left = -274,top = -210');");
top.opener = self
top.close()
}
// End -->
</sc