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