Check if a date is within N weeks from now
static bool isWithinWeeks(DateTime date, int weeks) { return isWithinDays(date, weeks * 7); }