function whatsnew(dy,mo,yr)
{
var newimage='<img src="/_include/new.gif" title="New" alt="New" style="width: 36px; height: 15px;">'
// set variable to new value in date object format
var myDate=new Date(yr,mo-1,dy)

//find today's date
var today = new Date()

var difference = (today - myDate) / (1000 * 60 * 60 * 24)  //convert mSec to days

//check if old or not. 14 days
if (difference < 14)
// {document.write("<b>NEW</b>")}  //text
 {document.write(newimage)}  //graphic
}
