
 function countDay(){
  var dayName='■第38回水の祭典久留米まつり本祭まであと  '//--何の日?
  var y=2009              //--何年? 
                          /*--今年を自動算出するなら
                              y=(new Date().getYear())と書きます--*/
  var m=8                //--何月?
  var d=4                //--何日?
  var theday=new Date(y,m-1,d)
  var today=new Date()
  var zan=theday-today
  var zanhi=zan/(1000*60*60*24)
  var Msg=''
  Msg+='<font color="lime">'+dayName+'</font >'
  Msg+='<font color="yellow" size=3><b>'+Math.ceil(zanhi)+'</b></font >'
  Msg+='<font color="lime"> 日</font >'
  Msg+=''
  return Msg
}
