Hola miriamgomez
creo que encontré el plugin que estas usando y puedes configurarlo con opts.disabledDates. Checa el ejemplo de abajo:
Código:
<script type="text/javascript">
// <![CDATA[
var today = new Date(),
thisMonthYYYYMM = today.getFullYear() + pad(today.getMonth()+1),
opts = {
formElements:{"dp-10":"d-ds-m-ds-Y"},
showWeeks:true,
statusFormat:"l-cc-sp-d-sp-F-sp-Y",
disabledDates:{}
};
// Disable from the 01st to the 22nd of this month
opts.disabledDates[thisMonthYYYYMM+"01"] = thisMonthYYYYMM+"22";
// Disable December the 25th for all years
opts.disabledDates["****1225"] = 1;
datePickerController.createDatePicker(opts);
// ]]>
</script>
es cuestión de que vallas haciendo pruebas usando la opción opts.disabledDates