File: dnChooserPopup.js

package info (click to toggle)
phpldapadmin 1.2.6.7-3~bpo12%2B1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 5,432 kB
  • sloc: php: 17,675; javascript: 5,299; xml: 1,498; sh: 379; python: 148; makefile: 23
file content (6 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
function dnChooserPopup(form,element,rdn)
{
	mywindow=open('entry_chooser.php','myname','resizable=no,width=600,height=370,scrollbars=1');
	mywindow.location.href = 'entry_chooser.php?form=' + form + '&element=' + element + '&rdn=' + rdn;
	if (mywindow.opener == null) mywindow.opener = self;
}