fix for new SMPATH
[squirrelmail.git] / plugins / message_details / message_details_top.php
1 <?php
2 /** Message Source
3 *
4 * Plugin to view the RFC822 raw message output and the bodystructure of a message
5 *
6 * Copyright (c) 2002 Marc Groot Koerkamp, The Netherlands
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * $Id$
10 **/
11
12 chdir('..');
13 define('SM_PATH','../');
14
15 /* SquirrelMail required files. */
16 require_once(SM_PATH . 'include/validate.php');
17 require_once(SM_PATH . 'functions/strings.php');
18 require_once(SM_PATH . 'config/config.php');
19
20
21 displayHtmlHeader( _("Message details"),
22 "<script language=\"javascript\">\n".
23 "<!--\n".
24 "function printPopup() {\n".
25 "parent.frames[1].focus();\n".
26 "parent.frames[1].print();\n".
27 "}\n".
28 "-->\n".
29 "</script>\n", FALSE );
30
31
32 echo "<body text=\"$color[8]\" bgcolor=\"$color[3]\" link=\"$color[7]\" vlink=\"$color[7]\" alink=\"$color[7]\">\n" .
33 '<center><b>'.
34 '<FORM name=rfc822 action="message_details_download.php?savemessage=1&passed_id='."$passed_id".'" METHOD=POST>' .
35 '<input type="button" value="' . _("Print") . '" onClick="printPopup()">&nbsp&nbsp '.
36 '<input type="button" value="' . _("Close Window") . '" onClick="window.parent.close()">&nbsp&nbsp'.
37 '<input type="submit" value="' . _("Save Message") . '"> '.
38 '<input type="hidden" name="mailbox" value="'. "$mailbox" . '"> ' .
39 '</form>'.
40 '</b>'.
41 '</body>'.
42 "</html>\n";
43 ?>