Added "User-Agent" to possible headers with the mailer information.
[squirrelmail.git] / src / addrbook_popup.php
1 <?php
2
3 /**
4 ** addrbook_popup.php
5 **
6 ** Copyright (c) 1999-2001 The SquirrelMail development team
7 ** Licensed under the GNU GPL. For full terms see the file COPYING.
8 **
9 ** Frameset for the JavaScript version of the address book.
10 **
11 ** $Id$
12 **/
13
14 require_once('../src/validate.php');
15 require_once('../functions/addressbook.php');
16
17 ?>
18 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
19
20 <HTML>
21 <HEAD>
22 <TITLE><?php
23 echo "$org_title: " . _("Address Book");
24 ?></TITLE>
25 </HEAD>
26
27 <FRAMESET ROWS="60,*" BORDER=0>
28 <FRAME NAME="abookmain" MARGINWIDTH=0 SCROLLING=NO
29 SRC="addrbook_search.php?show=form" BORDER=0>
30 <FRAME NAME="abookres" MARGINWIDTH=0 SRC="addrbook_search.php?show=blank"
31 BORDER=0>
32 </FRAMESET>
33
34 </HTML>