removed local directory name used for testing.
[squirrelmail.git] / src / addrbook_popup.php
CommitLineData
5100704d 1<?php
895905c0 2
35586184 3/**
4 * addrbook_popup.php
5 *
6c84ba1e 6 * Copyright (c) 1999-2005 The SquirrelMail Project Team
35586184 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 *
30967a1e 11 * @version $Id$
8f6f9ba5 12 * @package squirrelmail
54cbbcc4 13 * @subpackage addressbook
35586184 14 */
5100704d 15
30967a1e 16/**
17 * Path for SquirrelMail required files.
18 * @ignore
19 */
86725763 20define('SM_PATH','../');
21
8f6f9ba5 22/** SquirrelMail required files. */
08185f2a 23require_once(SM_PATH . 'include/validate.php');
86725763 24require_once(SM_PATH . 'functions/addressbook.php');
91e0dccc 25
5100704d 26?>
12ff1cab 27<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
5100704d 28
04fa3c41 29<html>
30 <head>
be2b5012 31 <meta name="robots" content="noindex,nofollow">
04fa3c41 32 <title><?php echo "$org_title: " . _("Address Book"); ?></title>
33 </head>
39bfea8f 34 <frameset rows="60,*" border="0">
04fa3c41 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>
f8a1ed5a 45</html>