function setDates (day, month, year)
{
	document.searchForm.day.value = day;
	document.searchForm.month.value = month;
	document.searchForm.year.value = year;

	var hidemonth = 'calendarContainer3';

	hide = document.getElementById(hidemonth);
	hide.style.display = "none";
}