<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
function checknew(date) {
var pic = "images/new12.gif";
expdate = new Date(date);
curdate = new Date();
if (expdate.getTime() > curdate.getTime())
document.write("<img src=" + pic + ">");
}
// End -->