
//New表示の日数
kikan = 14;

//今日
todayDate = new Date();
nY = todayDate.getFullYear();
nM = todayDate.getMonth();
nD = todayDate.getDate();

//比較対象日
newDate = new Date(nY,nM,nD);
tarY = newDate.getFullYear();
tarM = newDate.getMonth()+1;
tarD = newDate.getDate();

if(tarM <10){ tarM = '0'+tarM; }
if(tarD <10){ tarD = '0'+tarD; }

//文字列として整形
tarDate = tarY+""+tarM+""+tarD+"";
tarDate = tarDate - kikan;



function new_icon(newHiki){
//alert(newHiki +':'+tarDate);
	if(tarDate < newHiki){
		document.write('<img src="http://www.welcomekyushu.or.kr/images/top/new.gif" style="margin:0 0 -3px 0;" />');
	}else{
		return false;
	}
}