02eb6437eec3aa44ca02754aa9d483cc9183e986
[squirrelmail.git] / plugins / newmail / newmail.php
1 <?php
2
3 /**
4 ** newmail.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 ** Displays all options relating to new mail sounds
10 **
11 ** $Id$
12 **
13 **/
14
15 chdir ('../');
16 require_once('../src/validate.php');
17 require_once('../src/load_prefs.php');
18 require_once('../functions/page_header.php');
19
20 displayHtmlHeader( _("New Mail"), '', FALSE );
21
22 echo "<BODY bgcolor=\"$color[4]\" topmargin=0 leftmargin=0 rightmargin=0 marginwidth=0 marginheight=0>\n".
23 '<CENTER>'.
24 "<table width=100% cellpadding=2 cellspacing=2 border=0>\n".
25 "<tr>\n".
26 "<td bgcolor=\"$color[0]\">\n".
27 '<b><center>' . _("SquirrelMail Notice:") . "</center></b>\n".
28 "</td>\n".
29 "</tr><tr>\n".
30 "<td><center><br><big><font color=\"$color[2]\">" .
31 _("You have new mail!") . "</font><br></big><br>\n".
32 "<form name=nm>\n".
33 '<input type=button name=bt value="Close Window" onClick="javascript:window.close();">'.
34 "</form></center></td></tr></table></CENTER>\n".
35 "<script language=javascript>\n".
36 "<!--\n".
37 "document.nm.bt.focus();\n".
38 "-->\n".
39 "</script>\n".
40 "</BODY></HTML>\n";
41
42 ?>