improvements to 1.244 suggested by Tomas
[squirrelmail.git] / src / addrbook_popup.php
1 <?php
2
3 /**
4 * addrbook_popup.php
5 *
6 * Frameset for the JavaScript version of the address book.
7 *
8 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 * @subpackage addressbook
13 */
14
15 /**
16 * Include the SquirrelMail initialization file.
17 */
18 include('../include/init.php');
19
20 ?>
21 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
22 "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd">
23
24 <html>
25 <head>
26 <meta name="robots" content="noindex,nofollow">
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>