﻿// JScript File
function AgreeTerms(value)
{
    var chk=value;
    if(!chk.checked)
    {
        alert("Agree to the Terms And Conditions");
        document.getElementById('cbTerms').checked=true;
    }
}
function Privacy(value)
{
    var chk=value;
    if(!chk.checked)
    {
        alert("Read and agree to the Privacy Policy");
        document.getElementById('cbPrivacy').checked=true;
    }
}


