fixes for changed attachment handling
[squirrelmail.git] / src / printer_friendly_top.php
1 <?php
2
3 /**
4 * printer_friendly_top.php
5 *
6 * Copyright (c) 1999-2002 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 require_once('../src/validate.php');
16 require_once('../functions/strings.php');
17 require_once('../config/config.php');
18 require_once('../src/load_prefs.php');
19 require_once('../functions/page_header.php');
20 require_once('../functions/html.php');
21
22 displayHtmlHeader( _("Printer Friendly"),
23 "<script language=\"javascript\" type=\"text/javascript\">\n".
24 "<!--\n".
25 "function printPopup() {\n".
26 "parent.frames[1].focus();\n".
27 "parent.frames[1].print();\n".
28 "}\n".
29 "-->\n".
30 "</script>\n", FALSE );
31
32
33 echo "<body text='$color[8]' bgcolor='$color[3]' link='$color[7]' vlink='$color[7]' alink='$color[7]'>\n" .
34 //'<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle" align="center">'.
35 html_tag( 'div',
36 '<b>'.
37 '<form>'.
38 '<input type="button" value="' . _("Print") . '" onClick="printPopup()"> '.
39 '<input type="button" value="' . _("Close") . '" onClick="window.parent.close()">'.
40 '</form>'.
41 '</b>',
42 'right' );
43 //'</td></tr></table>'.
44 '</body></html>'. "\n";
45
46 ?>