function NewCheck(yyyy,mm,dd) {
	LastChgd = new Date(yyyy,mm,dd);
	var current = new Date(); // a new instance
	fixDate(current);
	if (LastChgd.getTime() > current.getTime()) {
		document.write("<BR><IMG SRC='Images/Dumbbell.gif' ALT='New/Updated in the Last Month' onMouseover='window.status=\"New/Updated in the Last Month\"; return true' onMouseout='window.status=\"\";return true'>")
	}
	else {
		document.write("<LI>")
	}
}

function fixDate(date) {
  var base = new Date(0);
  var skew = base.getTime();
  if (skew > 0)
    date.setTime(date.getTime() - skew);
}
