I haven't seen it done, but I think it probably could be.
Code:
$days = 7; # number of days to look for
$new = time() - ($days * 86400);
if ( &date_to_unix($rec{'
Date'}) >= $new) {
print qq|<img src="http://URL/to/new.gif">|;
}
Completely untested, but I don't see why it wouldn't work.
This would go into html_record wherever you wanted to print out your "new" graphic. Be sure to close off any previous print qq| statements with a |; and to start a new one after the above code in order to print the rest of the details of your record.
Also, I'm just assuming that the field which holds the date the record was added is called "Date." If it isn't, change the fieldname that's in bold letters within the code.
Don't forget that field names are case-sensitive.
------------------
JPD