typo
[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 */
14
15 /**
16 * Path for SquirrelMail required files.
17 * @ignore
18 */
19 define('SM_PATH','../');
20
21 /** SquirrelMail required files. */
22 require_once(SM_PATH . 'include/validate.php');
23 require_once(SM_PATH . 'functions/addressbook.php');
24
25 ?>
26 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
27
28 <HTML>
29 <HEAD>
30 <TITLE><?php echo "$org_title: " . _("Address Book"); ?></TITLE>
31 </HEAD>
32 <FRAMESET ROWS="60,*" BORDER=0>
33 <FRAME NAME="abookmain"
34 MARGINWIDTH="0"
35 SCROLLING="NO"
36 BORDER="0"
37 SRC="addrbook_search.php?show=form">
38 <FRAME NAME="abookres"
39 MARGINWIDTH="0"
40 BORDER="0"
41 SRC="addrbook_search.php?show=blank">
42 </FRAMESET>
43 </HTML>