
      function dateIsReserved_Unit93(year, month, day) {
         var SPECIAL_DAYS = [[11,1,2010],[11,2,2010],[11,3,2010],[11,4,2010],[11,5,2010],[11,6,2010],[11,7,2010],[11,8,2010],[11,9,2010],[11,10,2010],[11,11,2010],[11,12,2010],[11,13,2010],[11,14,2010],[11,15,2010],[11,16,2010],[11,17,2010],[11,18,2010],[11,19,2010],[11,20,2010],[11,21,2010],[11,22,2010],[11,23,2010],[11,24,2010],[11,25,2010],[11,26,2010],[11,27,2010],[11,28,2010],[11,29,2010],[11,30,2010],[12,1,2010],[12,2,2010],[12,3,2010],[12,4,2010],[12,5,2010],[12,6,2010],[12,7,2010],[12,8,2010],[12,9,2010],[12,10,2010],[12,11,2010],[12,12,2010],[12,13,2010],[12,14,2010],[12,15,2010],[12,16,2010],[12,17,2010],[12,18,2010],[12,19,2010],[12,20,2010],[12,21,2010],[12,22,2010],[12,23,2010],[12,24,2010],[12,25,2010],[12,26,2010],[12,27,2010],[12,28,2010],[12,29,2010],[12,30,2010],[12,31,2010],[1,1,2011],[1,2,2011],[1,3,2011],[1,4,2011],[1,5,2011],[1,6,2011],[1,7,2011],[1,8,2011],[1,9,2011],[1,10,2011],[1,11,2011],[1,12,2011],[1,13,2011],[1,14,2011],[1,15,2011],[1,16,2011],[1,17,2011],[1,18,2011],[1,19,2011],[1,20,2011],[1,21,2011],[1,22,2011],[1,23,2011],[1,24,2011],[1,25,2011],[1,26,2011],[1,27,2011],[1,28,2011],[1,29,2011],[1,30,2011],[1,31,2011],[2,1,2011],[2,2,2011],[2,3,2011],[2,4,2011],[2,5,2011],[2,6,2011],[2,7,2011],[2,8,2011],[2,9,2011],[2,10,2011],[2,11,2011],[2,12,2011],[2,13,2011],[2,14,2011],[2,15,2011],[2,16,2011],[2,17,2011],[2,18,2011],[2,19,2011],[2,20,2011],[2,21,2011],[2,22,2011],[2,23,2011],[2,24,2011],[2,25,2011],[2,26,2011],[2,27,2011],[2,28,2011],[3,1,2011],[3,2,2011],[3,3,2011],[3,4,2011],[3,5,2011],[3,6,2011],[3,7,2011],[3,8,2011],[3,9,2011],[3,10,2011],[3,11,2011],[3,12,2011],[3,13,2011],[3,14,2011],[3,15,2011],[3,16,2011],[3,17,2011],[3,18,2011],[3,19,2011],[3,20,2011],[3,21,2011],[3,22,2011],[3,23,2011],[3,24,2011],[3,25,2011],[3,26,2011],[3,27,2011],[3,28,2011],[3,29,2011],[3,30,2011]];
         if (!SPECIAL_DAYS) {
            return false;
         }
         for (var i in SPECIAL_DAYS) {
            if ((SPECIAL_DAYS[i][0] == month + 1) && (SPECIAL_DAYS[i][1] == day) && (SPECIAL_DAYS[i][2] == year)) {
               return true;
            }
         }
         return false;
      };

      function DateStatusFunc_Unit93(date, y, m, d) {
        if (dateIsReserved_Unit93(y, m, d)) {
           return "special";
        }
        else {
          
          return false; // other dates are enabled
        }
      };
      
      Calendar.setup( {
          flat				: "Unit93",					
          weekNumbers		: false,								
          dateStatusFunc	: DateStatusFunc_Unit93,		
          range				: [2010,2012]
      });
    
      function dateIsReserved_Unit103(year, month, day) {
         var SPECIAL_DAYS = [[3,19,2011],[3,20,2011],[3,21,2011],[3,22,2011],[3,23,2011],[3,24,2011],[3,25,2011],[3,26,2011],[3,27,2011],[3,28,2011],[3,29,2011],[3,30,2011],[3,31,2011],[4,1,2011],[4,2,2011]];
         if (!SPECIAL_DAYS) {
            return false;
         }
         for (var i in SPECIAL_DAYS) {
            if ((SPECIAL_DAYS[i][0] == month + 1) && (SPECIAL_DAYS[i][1] == day) && (SPECIAL_DAYS[i][2] == year)) {
               return true;
            }
         }
         return false;
      };

      function DateStatusFunc_Unit103(date, y, m, d) {
        if (dateIsReserved_Unit103(y, m, d)) {
           return "special";
        }
        else {
          
          return false; // other dates are enabled
        }
      };
      
      Calendar.setup( {
          flat				: "Unit103",					
          weekNumbers		: false,								
          dateStatusFunc	: DateStatusFunc_Unit103,		
          range				: [2010,2012]
      });
    
