* Forgot to mention that "Download this as a file" now sets showHeaders
[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
f740c049 13 include('../src/validate.php');
14 include("../functions/strings.php");
15 include('../functions/i18n.php');
16 include('../config/config.php');
17 include('../functions/page_header.php');
18 include('../functions/addressbook.php');
c9e9b23c 19 include('../src/load_prefs.php');
441f2d33 20
c9e9b23c 21 set_up_language(getPref($data_dir, $username, 'language'));
441f2d33 22
5100704d 23?>
24<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
25
26<HTML>
27<HEAD>
28<TITLE><?php
29 printf("%s: %s", $org_title, _("Address Book"));
30?></TITLE>
31</HEAD>
32
33<FRAMESET ROWS="60,*" BORDER=0>
34 <FRAME NAME="abookmain" MARGINWIDTH=0 SCROLLING=NO
9f2215a1 35 SRC="addrbook_search.php?show=form" BORDER=0>
36 <FRAME NAME="abookres" MARGINWIDTH=0 SRC="addrbook_search.php?show=blank"
5100704d 37 BORDER=0>
38</FRAMESET>
39
40</HTML>