Fixed bug in display special folders code.
[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 ** $Id$
11 **/
12
13 require_once('../src/validate.php');
14 require_once('../functions/addressbook.php');
15
16 ?>
17 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
18
19 <HTML>
20 <HEAD>
21 <TITLE><?php
22 echo "$org_title: " . _("Address Book");
23 ?></TITLE>
24 </HEAD>
25
26 <FRAMESET ROWS="60,*" BORDER=0>
27 <FRAME NAME="abookmain" MARGINWIDTH=0 SCROLLING=NO
28 SRC="addrbook_search.php?show=form" BORDER=0>
29 <FRAME NAME="abookres" MARGINWIDTH=0 SRC="addrbook_search.php?show=blank"
30 BORDER=0>
31 </FRAMESET>
32
33 </HTML>