// JavaScript Document

function Check(y, m, d, hh, mm, duration)
{
    var fileDate = new Date(y  ,m-1 , d , hh,mm , 0);
    var nowDate = new Date();
    var days = Math.floor((nowDate.getTime() - fileDate.getTime())/(1000*24*60*60));
    if (days < duration) {
	document.write('<img src="/img/common/ico_new.gif" alt="NEW" />');
        }
}


