function initRecaptcha(modal) {
var captcha = modal.find(".g-recaptcha");
grecaptcha.render(captcha.attr("id"), {
"sitekey" : SITE_KEY,
"callback" : function(token) {
captcha.parent().find(".g-recaptcha-response").val(token);
captcha.parent().submit();
}
});
}
$('.usluga1_btn').click(function () {
$('.usluga1_popup').bPopup({
closeClass: 'close',
follow: [
isFollow,
isFollow
],
onOpen: function() {
initRecaptcha($(this))
}
});
});