File: dnChooserPopup.js

package info (click to toggle)
phpldapadmin 1.2.0.5-2%2Bsqueeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 6,248 kB
  • ctags: 3,066
  • sloc: php: 16,758; xml: 1,494; sh: 322; makefile: 50
file content (6 lines) | stat: -rw-r--r-- 287 bytes parent folder | download
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_element=' + form_element + '&rdn=' + rdn;
	if (mywindow.opener == null) mywindow.opener = self;
}