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