I need to add another global address book, having disabled the ldaplist.
I add the following code to the header part of the newmsg.html file
<script language="JavaScript">
<!--
function GoAddressWindow()
{
var url = "[#s#]&form=global_addr";
// if ((toccbcc == 'all') || (toccbcc == 'to'))
// url += "&to=" + escape
(document.msg.headerto.value);
// if ((toccbcc == 'all') || (toccbcc == 'cc'))
// url += "&cc=" + escape
(document.msg.headercc.value);
// if ((toccbcc == 'all') || (toccbcc == 'bcc'))
// url += "&bcc=" + escape
(document.msg.headerbcc.value);
var hWnd =
window.open(url,"HelpWindow","width=400,height=325,resizable=yes,scrollbars=yes");
if ((document.window != null) && (!hWnd.opener))
hWnd.opener = document.window;
}
//-->
</script>
... and in the navigation bar on top I just add a new section called Global
Address Book, using this code:
<td><a href="Javascript:GoAddressWindow()" style="text-decoration:
none">Global Address Book (Testing)</a></td>
The problem is, I keep getting "Invalid Request" message in the popup
window.
Any idea?