function newImage(year,month,day){
update = new Date(year,month-1,day);
now = new Date();
period = (now-update)/(1000*60*60*24);
if(period <=7){
document.write("<IMG SRC='http://www.heads.ne.jp/gif/new.gif' width='43' height='10' border='0'>");
}
}
