switched doctype to standard compliance mode
[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 * Path for SquirrelMail required files.
17 * @ignore
18 */
19 define('SM_PATH','../');
20
21 /** SquirrelMail required files. */
22 include_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 "http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd">
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>