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