
      function dateIsReserved_Unit19(year, month, day) {
         var SPECIAL_DAYS = [[8,20,2010],[8,21,2010],[8,22,2010],[8,23,2010],[8,24,2010],[8,25,2010],[8,26,2010],[8,27,2010],[8,28,2010],[8,29,2010],[8,30,2010],[8,31,2010],[9,1,2010],[9,2,2010],[9,3,2010],[9,4,2010],[9,5,2010],[9,6,2010],[9,7,2010],[9,8,2010],[9,9,2010],[9,10,2010],[9,11,2010],[9,12,2010],[9,13,2010],[9,14,2010],[9,15,2010],[9,16,2010],[9,17,2010],[9,18,2010]];
         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_Unit19(date, y, m, d) {
        if (dateIsReserved_Unit19(y, m, d)) {
           return "special";
        }
        else {
          
          return false; // other dates are enabled
        }
      };
      
      Calendar.setup( {
          flat				: "Unit19",					
          weekNumbers		: false,								
          dateStatusFunc	: DateStatusFunc_Unit19,		
          range				: [2010,2012]
      });
    
      function dateIsReserved_Unit34(year, month, day) {
         var SPECIAL_DAYS = [[9,15,2010],[9,16,2010],[9,17,2010],[9,18,2010],[9,19,2010],[9,20,2010],[9,21,2010],[9,22,2010],[9,23,2010],[9,24,2010],[9,25,2010],[9,26,2010],[9,27,2010],[9,28,2010],[9,29,2010],[9,30,2010],[10,1,2010],[10,2,2010],[10,3,2010],[10,4,2010],[10,5,2010],[10,6,2010],[10,7,2010],[10,8,2010],[10,9,2010],[10,10,2010],[10,11,2010],[10,12,2010],[10,13,2010],[10,14,2010],[10,15,2010],[10,16,2010],[10,17,2010],[10,18,2010],[10,19,2010],[10,20,2010],[10,21,2010],[10,22,2010],[4,1,2011],[4,2,2011],[4,3,2011],[4,4,2011],[4,5,2011],[4,6,2011],[4,7,2011],[4,8,2011],[4,9,2011],[4,10,2011],[4,11,2011],[4,12,2011],[4,13,2011],[4,14,2011],[4,15,2011],[4,16,2011],[4,17,2011],[4,18,2011],[4,19,2011],[4,20,2011],[4,21,2011],[4,22,2011],[4,23,2011],[4,24,2011],[4,25,2011],[4,26,2011],[4,27,2011],[4,28,2011],[4,29,2011],[4,30,2011],[5,27,2011],[5,28,2011],[5,29,2011],[5,30,2011],[5,31,2011],[6,1,2011],[6,2,2011],[6,3,2011],[6,4,2011],[6,5,2011],[6,6,2011],[6,7,2011],[6,8,2011],[6,9,2011],[6,10,2011],[6,11,2011],[6,12,2011],[6,13,2011],[6,14,2011],[6,15,2011],[6,16,2011],[6,17,2011],[6,18,2011],[6,19,2011],[6,20,2011],[6,21,2011],[6,22,2011],[6,23,2011],[6,24,2011],[6,25,2011],[6,26,2011],[6,27,2011],[6,28,2011],[6,29,2011],[6,30,2011],[7,1,2011],[7,2,2011],[7,3,2011],[7,4,2011],[7,5,2011],[7,6,2011],[7,7,2011],[7,8,2011],[7,9,2011],[7,10,2011],[7,11,2011],[7,12,2011],[7,13,2011],[7,14,2011],[7,15,2011],[7,16,2011],[7,17,2011],[7,18,2011],[7,19,2011],[7,20,2011],[7,21,2011],[7,22,2011],[7,23,2011],[7,24,2011],[7,25,2011],[7,26,2011],[7,27,2011],[7,28,2011],[7,29,2011],[7,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_Unit34(date, y, m, d) {
        if (dateIsReserved_Unit34(y, m, d)) {
           return "special";
        }
        else {
          
          return false; // other dates are enabled
        }
      };
      
      Calendar.setup( {
          flat				: "Unit34",					
          weekNumbers		: false,								
          dateStatusFunc	: DateStatusFunc_Unit34,		
          range				: [2010,2012]
      });
    
      function dateIsReserved_Unit86(year, month, day) {
         var SPECIAL_DAYS = [[9,7,2010],[9,8,2010],[9,9,2010],[9,10,2010],[9,11,2010],[9,12,2010],[9,13,2010],[9,14,2010],[9,15,2010],[9,16,2010],[9,17,2010],[9,18,2010],[9,19,2010],[9,20,2010],[9,21,2010],[9,22,2010],[9,23,2010],[9,24,2010],[9,25,2010],[9,26,2010],[9,27,2010],[9,28,2010],[9,29,2010],[9,30,2010],[10,1,2010],[10,2,2010],[10,3,2010],[10,4,2010],[10,5,2010],[10,6,2010],[10,7,2010],[10,8,2010],[10,9,2010],[10,10,2010],[10,11,2010],[10,12,2010],[10,13,2010],[10,14,2010],[10,15,2010],[10,16,2010],[10,17,2010],[10,18,2010],[10,19,2010],[10,20,2010],[10,21,2010],[10,22,2010],[10,23,2010],[10,24,2010],[10,25,2010],[10,26,2010],[10,27,2010],[10,28,2010],[10,29,2010],[10,30,2010],[10,31,2010],[11,1,2010],[11,2,2010],[11,3,2010],[11,4,2010],[11,5,2010]];
         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_Unit86(date, y, m, d) {
        if (dateIsReserved_Unit86(y, m, d)) {
           return "special";
        }
        else {
          
          return false; // other dates are enabled
        }
      };
      
      Calendar.setup( {
          flat				: "Unit86",					
          weekNumbers		: false,								
          dateStatusFunc	: DateStatusFunc_Unit86,		
          range				: [2010,2012]
      });
    
      function dateIsReserved_Unit98(year, month, day) {
         var SPECIAL_DAYS = [[6,14,2011],[6,15,2011],[6,16,2011],[6,17,2011],[6,18,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_Unit98(date, y, m, d) {
        if (dateIsReserved_Unit98(y, m, d)) {
           return "special";
        }
        else {
          
          return false; // other dates are enabled
        }
      };
      
      Calendar.setup( {
          flat				: "Unit98",					
          weekNumbers		: false,								
          dateStatusFunc	: DateStatusFunc_Unit98,		
          range				: [2010,2012]
      });
    
