﻿// 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 chkbox = document.getElementsByName(name);
   
    if(chkbox!=null) {
     if(name == 'cbPolicy')
        {
           alert("Please go through Privicy Policy");
        } 
        else
        {
           alert("Agree to the Terms And Conditions");
        }
        for(var i = 0; i < chkbox.length; i++) {
            if(chkbox[i].type == 'checkbox') {
                chkbox[i].checked = true;
            }
        }
    }


}

function NumbersOnly(e)
{
    var unicode=e.charCode? e.charCode : e.keyCode
    if ((unicode<48||unicode>57) && (unicode !=8)&& (unicode !=9) )
    return false 
    
}


