﻿// 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,name)
{
    var chk=value;
    if(!chk.checked)
    {
        if(name == 'cbPolicy')
        {
           alert("Going through Privacy Policy is Mandatory");
        } 
        else
        {
           alert("Agree to the Terms And Conditions");
        }
        document.getElementById(name).checked=true;
    }
}

