document.write('<style type="text/css">.hide-from-js{display:none}</style>');


// fill in captcha code
$(document).ready(function () {
  window.setTimeout(fillCaptcha, 5000);
});



function fillCaptcha()
{
  if ($('#captchaCode').length) {
    $.get(HTTP_PATH+'/inc/securimage/AJAX_captcha.php', function (data) {
      $('#captchaCode').val(data);
      
    });
  }
}
