replacing admins own openwindow with egw_openWindowCentered2

This commit is contained in:
Ralf Becker
2010-06-02 18:28:27 +00:00
parent ea57302fce
commit 13ff6543cf
9 changed files with 1 additions and 58 deletions

View File

@ -1,18 +0,0 @@
var phpinfo;
function openwindow(url)
{
if (phpinfo)
{
if (phpinfo.closed)
{
phpinfo.stop;
phpinfo.close;
}
}
phpinfo = window.open(url, "phpinfoWindow","width=700,height=600,location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=yes,status=no");
if (phpinfo.opener == null)
{
phpinfo.opener = window;
}
}