Received is a better word in this instance.
[squirrelmail.git] / src / addrbook_popup.php
CommitLineData
5100704d 1<?php
895905c0 2
35586184 3/**
4 * addrbook_popup.php
5 *
82d304a0 6 * Copyright (c) 1999-2004 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
35586184 13 */
5100704d 14
30967a1e 15/**
16 * Path for SquirrelMail required files.
17 * @ignore
18 */
86725763 19define('SM_PATH','../');
20
8f6f9ba5 21/** SquirrelMail required files. */
08185f2a 22require_once(SM_PATH . 'include/validate.php');
86725763 23require_once(SM_PATH . 'functions/addressbook.php');
441f2d33 24
5100704d 25?>
12ff1cab 26<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
5100704d 27
04fa3c41 28<html>
29 <head>
30 <title><?php echo "$org_title: " . _("Address Book"); ?></title>
31 </head>
39bfea8f 32 <frameset rows="60,*" border="0">
04fa3c41 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>