var minimumdate = document.getElementById("PageContent_hdnVdate").value;
var currentDate = new Date("30/Apr/2025");
function GetRestart1() {
$("#<%=txt_installationDate.ClientID %>").datepicker({
changeMonth: true,
changeYear: true,
dateFormat: "dd/M/yy",
maxDate: currentDate,
minDate: minimumdate,
showOn: "button",
showOn: "both",
buttonImage: "../img/calendar.png",
buttonImageOnly: true,
onClose: function (selectedDate) {
$("#<%=txt_installationDate.ClientID %>").datepicker("option", "minDate", selectedDate);
}
});
}