    function newItem(expiryDate)
    {
        exp = new Date(expiryDate);
        cur = new Date();
        if (cur.getTime() < exp.getTime())
		   document.write("<IMG SRC='images/new_m.jpg' WIDTH=34 HEIGHT=10 BORDER=0 ALT='Pojawiły się nowe informacje!'>" );
    }

