// Conditionally inserts a new icon depending on the date.

var new_icon = "/graphics/new.gif";

function expnew(when) {
  expires = new Date(when);
  today = new Date();

  if (expires.getTime() > today.getTime()) {
    document.write("<IMG src=" + new_icon + " border=0>");
  }
}
