﻿var today=new Date()

function whatsnew(yr,mon,day,image,info){
var expire=new Date(yr,mon,day)
if (today.getTime()<=expire.getTime())
document.write(image);
if (today.getTime()<=expire.getTime())
document.write(info);
/////////document.write('<br>This is text');/////////
}

