Fixed ary_sort problem.
[squirrelmail.git] / src / addrbook_popup.php
CommitLineData
5100704d 1<?php
2 /**
3 ** addrbook_popup.php
4 **
ef870322 5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
5100704d 8 ** Frameset for the JavaScript version of the address book.
9 **
10 **/
11
2a32fc83 12 session_start();
13
5100704d 14 if (!isset($config_php))
15 include("../config/config.php");
16 if (!isset($page_header_php))
17 include("../functions/page_header.php");
f33d2f92 18 if (!isset($auth_php))
19 include("../functions/auth.php");
5100704d 20 if (!isset($addressbook_php))
21 include("../functions/addressbook.php");
f33d2f92 22
23 is_logged_in();
5100704d 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
9f2215a1 36 SRC="addrbook_search.php?show=form" BORDER=0>
37 <FRAME NAME="abookres" MARGINWIDTH=0 SRC="addrbook_search.php?show=blank"
5100704d 38 BORDER=0>
39</FRAMESET>
40
41</HTML>