﻿function checkAgmnts()
{
    var checkBox = document.getElementById('LicenseAgreement');

    if(checkBox != null && checkBox.checked)
    {
        return true;
    }


    alert('Musíte souhlasit s obchodními podmínkami');
    return false;
}
