//set the below to the image you wish to use as the "new" image
var imagetag='<img src="gifs/new.gif">'
var today=new Date()
function expireat(expiredate){
var expire=new Date(expiredate)
if (today.getTime()<=expire.getTime())
document.write(imagetag)
}
