home *** CD-ROM | disk | FTP | other *** search
- function emailuser_lokal()
- {
- var bw = String(location.search);
- var au = bw.slice(1, bw.length);
- var vr = au.split('&');
-
- var op = document.dummy.auswahl.options[document.dummy.auswahl.selectedIndex].value;
- var fe = window.opener.parent.main.document.formular.elements[vr[1]];
- var fo = window.opener.parent.main.document.formular.elements[vr[2]];
- var la = document.dummy.auswahl.length;
- var li = '';
-
- if (fe != '')
- fe.value = '';
-
- for (i = 0; i < la; i++)
- if (document.dummy.auswahl.options[i].selected == true)
- li += document.dummy.auswahl.options[i].value + ',';
-
- fe.value = li.slice(0, li.length - 1);
- fo.focus();
- top.close();
- }