 function desHabilitarFechas(date)
 {
 	var hoy=new Date();
 	if(((date.getMonth()<=hoy.getMonth() && date.getDate()<hoy.getDate())|| (date.getMonth()<hoy.getMonth() && date.getFullYear()<=hoy.getFullYear())))
	{
		return true;
	}
	return false;
 }
