Only iso_8859_default and ns_4551_1 decoding is left in i18n.php. Others
[squirrelmail.git] / src / addrbook_popup.php
1 <?php
2
3 /**
4 * addrbook_popup.php
5 *
6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Frameset for the JavaScript version of the address book.
10 *
11 * $Id$
12 */
13
14 /* Path for SquirrelMail required files. */
15 define('SM_PATH','../');
16
17 /* SquirrelMail required files. */
18 require_once(SM_PATH . 'include/validate.php');
19 require_once(SM_PATH . 'functions/addressbook.php');
20
21 ?>
22 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
23
24 <HTML>
25 <HEAD>
26 <TITLE><?php echo "$org_title: " . _("Address Book"); ?></TITLE>
27 </HEAD>
28 <FRAMESET ROWS="60,*" BORDER=0>
29 <FRAME NAME="abookmain"
30 MARGINWIDTH="0"
31 SCROLLING="NO"
32 BORDER="0"
33 SRC="addrbook_search.php?show=form">
34 <FRAME NAME="abookres"
35 MARGINWIDTH="0"
36 BORDER="0"
37 SRC="addrbook_search.php?show=blank">
38 </FRAMESET>
39 </HTML>