<!--
function countDay(){

  var dayName='USA vs. Portugal!'
  var y=2002               
  var m=6                
  var d=5                
  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 SIZE="4" face="Times New Roman" COLOR="#00cc33">Only <\/FONT>'
  Msg+='<FONT SIZE="6" face="Times New Roman" COLOR="red"><STRONG>'+Math.ceil(zanhi)+' <\/STRONG><\/FONT>'
  Msg+='<FONT SIZE="4" face="Times New Roman" COLOR="#00cc33">days until <\/FONT>'
  Msg+='<FONT SIZE="5" face="Times New Roman" COLOR="yellow"><STRONG>'+dayName+' <\/STRONG><\/FONT>'

  return Msg
}

//-->