// コピーライト
  // 終了日(5年後)の日付設定
  end_year = 2008;	// 年
  end_month = 9;	// 月
  end_day = 7;		// 日
  // -----------------------

  end_month = end_month - 1;
  end_day = end_day - 1;
  now_date = new Date();
  ani_date = new Date(end_year,end_month,end_day);
  days = (ani_date.getTime() - now_date.getTime())/(24*60*60*1000);
  days = Math.ceil(days);
// cgi用popup
function openwin(win,w,h){
	var features="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,top=30,left=20,"+"width="+w+",height="+h;
	window.open(win,"s_win",features);
}











