<!--
function xDay(y,m,d)
{
today = new Date();
xday = new Date(y,m-1,d);
n = Math.floor((xday.getTime()-today.getTime())/86400000)+1;
if(n >0)      document.write(num2img(n));
else if(n==0) document.write("<img src='0.gif'>");
else if(n <0) document.write("<img src='-.gif'>");
}

function num2img(num){
num=""+num;
temp="";
for(var i=0;i<num.length;i++){
temp+="<img src=\""+num.charAt(i)+".gif\">";
}
return temp;
}
//
//-->
