﻿// JScript File
function setDate (inputBox,anchor)
{
      var cal = new CalendarPopup("calDiv"); 
      cal.showNavigationDropdowns();
      //cal.showYearNavigation(true);
      cal.showYearNavigationInput(true);
      inputBox = document.getElementById(inputBox);
      cal.select(inputBox, anchor, "MM/dd/yyyy");
}
function AgreeTerms(value)
{
    var chk=value;
    if(!chk.checked)
    {
        alert("Agree to the Terms And Conditions");
        document.getElementById('cbTerms').checked=true;
    }
}

