<!-- Original:  Nicolas -->
<!-- Web Site:  http://www.javascript-page.com -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
function checknew(date) {
var pic = "../img/nuevo05.gif";
expdate = new Date(date);
curdate = new Date();
if (expdate.getTime() > curdate.getTime())
document.write("&nbsp;&nbsp;<img src=" + pic + ">");
}