7 lines
295 B
JavaScript
7 lines
295 B
JavaScript
|
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;
|
||
|
}
|