function countDownDate(year, month, day) {
	tgDay = new Date(year, month - 1, day + 1);
	today = new Date();
	days = Math.floor((tgDay - today) / (24 * 60 * 60 * 1000));
	
	return days;
}

