Converted sm-1_0 to branch and sm-1_1 to trunk
[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 **
245a6892 10 ** $Id$
5100704d 11 **/
12
2a32fc83 13 session_start();
14
12b4ef8b 15 if (!isset($strings_php))
16 include("../functions/strings.php");
441f2d33 17 if (!isset($i18n_php))
c9e9b23c 18 include('../functions/i18n.php');
5100704d 19 if (!isset($config_php))
c9e9b23c 20 include('../config/config.php');
5100704d 21 if (!isset($page_header_php))
c9e9b23c 22 include('../functions/page_header.php');
f33d2f92 23 if (!isset($auth_php))
c9e9b23c 24 include('../functions/auth.php');
5100704d 25 if (!isset($addressbook_php))
c9e9b23c 26 include('../functions/addressbook.php');
f33d2f92 27
28 is_logged_in();
441f2d33 29
c9e9b23c 30 include('../src/load_prefs.php');
441f2d33 31
c9e9b23c 32 set_up_language(getPref($data_dir, $username, 'language'));
441f2d33 33
5100704d 34?>
35<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
36
37<HTML>
38<HEAD>
39<TITLE><?php
40 printf("%s: %s", $org_title, _("Address Book"));
41?></TITLE>
42</HEAD>
43
44<FRAMESET ROWS="60,*" BORDER=0>
45 <FRAME NAME="abookmain" MARGINWIDTH=0 SCROLLING=NO
9f2215a1 46 SRC="addrbook_search.php?show=form" BORDER=0>
47 <FRAME NAME="abookres" MARGINWIDTH=0 SRC="addrbook_search.php?show=blank"
5100704d 48 BORDER=0>
49</FRAMESET>
50
51</HTML>