function captchaContent(form,start){var unicIdLabel=Math.random().toString().replace('.',''),scrImageCaptcha=form.find('.codeCaptcha').length==0?captchaUrl+'?+new'+unicIdLabel:form.find('.codeCaptcha img').attr('src');scrImageCaptcha=start?captchaUrl+'?'+unicIdLabel:scrImageCaptcha;var belongsToForm='';form.each(function(ind,elem){belongsToForm=$(elem).is('form')?'':'form="booking-form"';$(elem).find('.captchaField').append($('
').append($('').append($(''),$('').append($(''))),$('')));$(elem).find('.reloadCaptcha').one('click',function(){resetCaptcha();setCaptcha(form);});});} function setCaptcha(form){if(form!=undefined&&form.find('.codeCaptcha').length==0){form.addClass('hasCaptcha');if($('.codeCaptcha').length>0) captchaContent(form,false);else captchaContent(form,true);} else{if($('.codeCaptcha').length==0) captchaContent($(".hasCaptcha"),false);}} function resetCaptcha(){$('.captchaField').each(function(index){$(this).empty();});}