ce3a9247507b88733fb0ab47015e7b4328b323f9
[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
18 echo "<HTML>\n".
19 '<TITLE>' . _("New Mail") . "</TITLE>\n".
20 "<BODY bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
21 '<CENTER>'.
22 "<table width=100% cellpadding=2 cellspacing=2 border=0>\n".
23 "<tr>\n".
24 "<td bgcolor=\"$color[0]\">\n".
25 '<b><center>' . _("SquirrelMail Notice:") . "</center></b>\n".
26 "</td>\n".
27 "</tr><tr>\n".
28 "<td><center><br><big><font color=\"$color[2]\">" .
29 _("You have new mail!") . "</font></big><br>\n".
30 "<form name=nm>\n".
31 '<input type=button name=bt value="Close Window" onClick="javascript:window.close();">'.
32 "</form></center></td></tr></table></CENTER>\n".
33 "<script language=javascript>\n".
34 "<!--\n".
35 "document.nm.bt.focus();\n".
36 "-->\n".
37 "</script>\n".
38 "</BODY></HTML>\n";
39
40 ?>