Lots of changes for variable initialization - clean up, really,
[squirrelmail.git] / src / addrbook_popup.php
CommitLineData
5100704d 1<?php
895905c0 2
35586184 3/**
4 * addrbook_popup.php
5 *
76911253 6 * Copyright (c) 1999-2003 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 *
11 * $Id$
12 */
5100704d 13
86725763 14/* Path for SquirrelMail required files. */
15define('SM_PATH','../');
16
17/* SquirrelMail required files. */
08185f2a 18require_once(SM_PATH . 'include/validate.php');
86725763 19require_once(SM_PATH . 'functions/addressbook.php');
441f2d33 20
5100704d 21?>
12ff1cab 22<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
5100704d 23
24<HTML>
35586184 25 <HEAD>
26 <TITLE><?php echo "$org_title: " . _("Address Book"); ?></TITLE>
27 </HEAD>
28 <FRAMESET ROWS="60,*" BORDER=0>
29 <FRAME NAME="abookmain"
30 MARGINWIDTH="0"
31 SCROLLING="NO"
32 BORDER="0"
33 SRC="addrbook_search.php?show=form">
34 <FRAME NAME="abookres"
35 MARGINWIDTH="0"
36 BORDER="0"
37 SRC="addrbook_search.php?show=blank">
38 </FRAMESET>
39</HTML>