var disp = 14;          // days to display
var imgn = 'http://www.co.yakima.wa.us/e&t/images/newflag.gif';  // image filename
var imgw = 44;         // image width
var imgh = 16;         // image height

// display "new" image for set period
// copyright Stephen Chapman, 25th February 2005
// you may copy this provided that you retain the copyright notice
function newCheck(y,m,d) {
var after = new Date();
after.setDate(after.getDate() - disp);
var nc = new Date();
nc.setFullYear(y);
nc.setMonth(m-1);
nc.setDate(d);
if (nc.valueOf() >= after.valueOf()) {
document.write('<img src="'+imgn+'" width="'+imgw+
'" height="'+imgh+'" alt="new" \/>');
}
}
