<!--
var inNewsHTM = "innews.htm";		// In the News index document
var wcHTM = "wcindex.htm";			// Wallace's Corner index document

function isNew(dmyText, html)
{
  var lastUpdate = new Date(dmyText);
  var today = new Date();

  // calculate elapsed days (Java dates are in milliseconds)
  var elapsedDays = (today - lastUpdate)/(24*60*60*1000);

  if (elapsedDays < 31)		// if less than 31 days old, it is new
    {
    document.write("<A HREF=\""+html+"\"><img src=\"iconnews.gif\" HSPACE=10 BORDER=0 HEIGHT=12 WIDTH=31></A><small>Updated on "+dmyText+"</small>");
    }
}
// -->
