html cleanups
[squirrelmail.git] / src / addrbook_popup.php
1 <?php
2
3 /**
4 * addrbook_popup.php
5 *
6 * Copyright (c) 1999-2005 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 <meta name="robots" content="noindex,nofollow">
32 <title><?php echo "$org_title: " . _("Address Book"); ?></title>
33 </head>
34 <frameset rows="60,*" border="0">
35 <frame name="abookmain"
36 marginwidth="0"
37 scrolling="no"
38 border="0"
39 src="addrbook_search.php?show=form" />
40 <frame name="abookres"
41 marginwidth="0"
42 border="0"
43 src="addrbook_search.php?show=blank" />
44 </frameset>
45 </html>