*** empty log message ***

This commit is contained in:
sebastian 2005-03-07 17:03:29 +00:00
parent df99ff2cb5
commit 214e3e960e
17 changed files with 197 additions and 237 deletions

View file

@ -33,7 +33,7 @@
{
var screenX;
var screenY;
url = url + '&was_popup=1';
screenX = (window.screenX + window.innerWidth/2 - width/2);
screenY = (window.screenY + window.innerHeight/2 - height/2);
arg = 'width='+width+', height='+height+', scrollbars=no, menubar=no, depend=yes, left='+screenX+', top='+screenY;
@ -44,6 +44,7 @@
function hpopup(url, name) //hidden popup! 'width=1, height=1'
{
url = url + '&was_popup=1';
popupwin = window.open(url, name);
//window.parent.focus();
}