	cal1.addDisabledDates(null,formatDate(now,"yyyy-MM-dd"));
	cal1.addDisabledDates(formatDate(now,"yyyy-MM-dd"));

	// -- we need to disable next day if the time is after 12pm
	var cur_hour = now.getHours();
	if (cur_hour > 12) {
		var day = new Date();
		day.setDate(day.getDate()+1);
		cal1.addDisabledDates(formatDate(day,"yyyy-MM-dd"));
	}

	var cur_day = now.getDay();
	if (cur_hour > 12 && cur_day == 5) {
		var day = new Date();
		day.setDate(day.getDate()+3);
		cal1.addDisabledDates(formatDate(day,"yyyy-MM-dd"));
	}

	cal1.setDisabledWeekDays(5,6);
	cal1.setWeekStartDay(1);

