if(updatedate != ''){

    // 更新日
    updateday = new Date(updatedate); 

    // 今日の日付
    today = new Date();

    if(today.setDate(today.getDate() - 10) < updateday){
      // 10日以内の修正は、新しいとする
      document.write("(" + updatedate + ") <FONT COLOR=\"#FF0000\"><STRONG>New!!</STRONG></FONT>");
    }else{
      document.write("(" + updatedate + ")");
    }

}