Fixed ary_sort problem.
[squirrelmail.git] / src / addrbook_popup.php
1 <?php
2 /**
3 ** addrbook_popup.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** Frameset for the JavaScript version of the address book.
9 **
10 **/
11
12 session_start();
13
14 if (!isset($config_php))
15 include("../config/config.php");
16 if (!isset($page_header_php))
17 include("../functions/page_header.php");
18 if (!isset($auth_php))
19 include("../functions/auth.php");
20 if (!isset($addressbook_php))
21 include("../functions/addressbook.php");
22
23 is_logged_in();
24 ?>
25 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
26
27 <HTML>
28 <HEAD>
29 <TITLE><?php
30 printf("%s: %s", $org_title, _("Address Book"));
31 ?></TITLE>
32 </HEAD>
33
34 <FRAMESET ROWS="60,*" BORDER=0>
35 <FRAME NAME="abookmain" MARGINWIDTH=0 SCROLLING=NO
36 SRC="addrbook_search.php?show=form" BORDER=0>
37 <FRAME NAME="abookres" MARGINWIDTH=0 SRC="addrbook_search.php?show=blank"
38 BORDER=0>
39 </FRAMESET>
40
41 </HTML>