Tyler: This is not very original but should do the trick
[squirrelmail.git] / plugins / newmail / newmail.php
1 <?php
2
3 /**
4 ** newmail.php
5 ** Copyright (c) 1999-2001 The Squirrelmail Development Team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** Displays all options relating to new mail sounds
9 **
10 ** $Id$
11 **
12 **/
13
14 chdir ('../');
15 require_once('../src/validate.php');
16 require_once('../src/load_prefs.php');
17 require_once('../functions/page_header.php');
18
19 displayHtmlHeader( _("New Mail"), '', FALSE );
20
21 echo "<BODY bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
22 '<CENTER>'.
23 "<table width=100% cellpadding=2 cellspacing=2 border=0>\n".
24 "<tr>\n".
25 "<td bgcolor=\"$color[0]\">\n".
26 '<b><center>' . _("SquirrelMail Notice:") . "</center></b>\n".
27 "</td>\n".
28 "</tr><tr>\n".
29 "<td><center><br><big><font color=\"$color[2]\">" .
30 _("You have new mail!") . "</font><br></big><br>\n".
31 "<form name=nm>\n".
32 '<input type=button name=bt value="Close Window" onClick="javascript:window.close();">'.
33 "</form></center></td></tr></table></CENTER>\n".
34 "<script language=javascript>\n".
35 "<!--\n".
36 "document.nm.bt.focus();\n".
37 "-->\n".
38 "</script>\n".
39 "</BODY></HTML>\n";
40
41 ?>