54617ef1950b183d8960123d620a86bdc4eed83b
[squirrelmail.git] / src / addrbook_popup.php
1 <?php
2
3 /**
4 * addrbook_popup.php
5 *
6 * Copyright (c) 1999-2004 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 * @version $Id$
12 * @package squirrelmail
13 * @subpackage addressbook
14 */
15
16 /**
17 * Path for SquirrelMail required files.
18 * @ignore
19 */
20 define('SM_PATH','../');
21
22 /** SquirrelMail required files. */
23 require_once(SM_PATH . 'include/validate.php');
24 require_once(SM_PATH . 'functions/addressbook.php');
25
26 ?>
27 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
28
29 <html>
30 <head>
31 <title><?php echo "$org_title: " . _("Address Book"); ?></title>
32 </head>
33 <frameset rows="60,*" border="0">
34 <frame name="abookmain"
35 marginwidth="0"
36 scrolling="no"
37 border="0"
38 src="addrbook_search.php?show=form" />
39 <frame name="abookres"
40 marginwidth="0"
41 border="0"
42 src="addrbook_search.php?show=blank" />
43 </frameset>
44 </html>