function getCountDownDay(theYear,theMonth,theDate){	theMonthName = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");	today    = new Date();							endDay   = theMonthName[theMonth-1]+" "+theDate+","+theYear;		endToday = new Date(endDay);						dayCount = 24 * 60 * 60 * 1000;						countDay = (endToday.getTime() - today.getTime()) / dayCount;		return Math.floor(countDay)+1;					}