We're living in 2004 now... perl is your friend for these kinds of things :)
[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 *
11 * $Id$
8f6f9ba5 12 * @package squirrelmail
35586184 13 */
5100704d 14
8f6f9ba5 15/** Path for SquirrelMail required files. */
86725763 16define('SM_PATH','../');
17
8f6f9ba5 18/** SquirrelMail required files. */
08185f2a 19require_once(SM_PATH . 'include/validate.php');
86725763 20require_once(SM_PATH . 'functions/addressbook.php');
441f2d33 21
5100704d 22?>
12ff1cab 23<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
5100704d 24
25<HTML>
35586184 26 <HEAD>
27 <TITLE><?php echo "$org_title: " . _("Address Book"); ?></TITLE>
28 </HEAD>
29 <FRAMESET ROWS="60,*" BORDER=0>
30 <FRAME NAME="abookmain"
31 MARGINWIDTH="0"
32 SCROLLING="NO"
33 BORDER="0"
34 SRC="addrbook_search.php?show=form">
35 <FRAME NAME="abookres"
36 MARGINWIDTH="0"
37 BORDER="0"
38 SRC="addrbook_search.php?show=blank">
39 </FRAMESET>
40</HTML>