XHTML fixes
[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>