    function newItem(expiryDate)
    {
        exp = new Date(expiryDate);
        cur = new Date();
        if (cur.getTime() < exp.getTime())
		   document.write("<IMG SRC='../pic/new.gif' WIDTH=47 HEIGHT=13 BORDER=0 ALT='new'>" );
    }