Lots of changes for variable initialization - clean up, really,
[squirrelmail.git] / src / printer_friendly_top.php
1 <?php
2
3 /**
4 * printer_friendly_top.php
5 *
6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * top frame of printer_friendly_main.php
10 * displays some javascript buttons for printing & closing
11 *
12 * $Id$
13 */
14
15 /* Path for SquirrelMail required files. */
16 define('SM_PATH','../');
17
18 /* SquirrelMail required files. */
19 require_once(SM_PATH . 'include/validate.php');
20 require_once(SM_PATH . 'functions/strings.php');
21 require_once(SM_PATH . 'config/config.php');
22 require_once(SM_PATH . 'include/load_prefs.php');
23 require_once(SM_PATH . 'functions/page_header.php');
24 require_once(SM_PATH . 'functions/html.php');
25
26 displayHtmlHeader( _("Printer Friendly"),
27 "<script language=\"javascript\" type=\"text/javascript\">\n".
28 "<!--\n".
29 "function printPopup() {\n".
30 "parent.frames[1].focus();\n".
31 "parent.frames[1].print();\n".
32 "}\n".
33 "-->\n".
34 "</script>\n", FALSE );
35
36
37 echo "<body text='$color[8]' bgcolor='$color[3]' link='$color[7]' vlink='$color[7]' alink='$color[7]'>\n" .
38 html_tag( 'div',
39 '<b>'.
40 '<form>'.
41 '<input type="button" value="' . _("Print") . '" onclick="printPopup()" /> '.
42 '<input type="button" value="' . _("Close") . '" onclick="window.parent.close()" />'.
43 '</form>'.
44 '</b>',
45 'right' );
46 '</body></html>'. "\n";
47
48 ?>