

// Handles the disabling of dates.
function disableDatesBeforeToday(date, y, m, d)
{
  var today = new Date();
  var today2 = new Date();
  today2.setDate(today.getDate());
  today2.setMonth(today.getMonth());
  today2.setFullYear(today.getFullYear());
  today2.setHours(00,00,00,00);
  
  //if (date < today2)
  //{
	//	return true;
  //}
}

