fixing phpdoc warnings re:SM_PATH. Moving Id tags to @version
[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
28<HTML>
35586184 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>