add swf and mp3 support
[squirrelmail.git] / plugins / newmail / newmail.php
CommitLineData
4508b1b6 1<?php
8d6a115b 2/**
ebe02dfc 3 * newmail.php - popup page
8d6a115b 4 *
6c84ba1e 5 * Copyright (c) 1999-2005 The SquirrelMail Project Team
91e0dccc 6 * Licensed under the GNU GPL. For full terms see the file COPYING.
8d6a115b 7 *
8 * Displays all options relating to new mail sounds
9 *
ebe02dfc 10 * @version $Id$
ea5f4b8e 11 * @package plugins
12 * @subpackage newmail
8d6a115b 13 */
d0dbdb14 14
ea5f4b8e 15/** @ignore */
8d6a115b 16define('SM_PATH','../../');
17
18/* SquirrelMail required files. */
19require_once(SM_PATH . 'include/validate.php');
a9aa7ab7 20
7c15c446 21sqGetGlobalVar('numnew', $numnew, SQ_GET);
22
a9aa7ab7 23 displayHtmlHeader( _("New Mail"), '', FALSE );
24
6fd95361 25 echo '<body bgcolor="'.$color[4].'" topmargin="0" leftmargin="0" rightmargin="0" marginwidth="0" marginheight="0">'."\n".
4cf43843 26 '<center>'. "\n" .
27 html_tag( 'table', "\n" .
28 html_tag( 'tr', "\n" .
29 html_tag( 'td', '<b>' . _("SquirrelMail Notice:") . '</b>', 'center', $color[0] )
30 ) .
31 html_tag( 'tr', "\n" .
32 html_tag( 'td',
c5a2a440 33 '<br /><big><font color="' . $color[2] . '">'.
34 sprintf(ngettext("You have %s new message","You have %s new messages",$numnew), $numnew ) .
35 '</font><br /></big><br />' . "\n" .
36 '<form name="nm">' . "\n".
37 '<input type="button" name="bt" value="' . _("Close Window") .
c435f076 38 '" onclick="javascript:window.close();" />'."\n".
c5a2a440 39 '</form>',
40 'center' )
41 ) ,
42 '', '', 'width="100%" cellpadding="2" cellspacing="2" border="0"' ) .
43 '</center>' .
44 "<script language=javascript>\n".
45 "<!--\n".
46 "document.nm.bt.focus();\n".
47 "-->\n".
48 "</script>\n".
49 "</body></html>\n";
6fd95361 50?>