jQuery(document).ready(function(){
  /*----------show appropriate image, ajax call-------- */
  $('#captcha').click(function() {
    $.get(BASE_URL + "/public/images/captcha/captchaajax.php",{'url': BASE_URL}, function(data) {
    $('#captcha_load').html(data);
  });
  });

  $('#mappsformsubmit').click(function(){
    value = document.getElementById('mappscaptchatext').value;
    if (value == null) value = 'a';
    $.get(BASE_URL + "/mapps/downloadlink",{'captcha': value}, function(data) {
       if (data == 'wrong')
         alert("Enter code correctly");
       else{
          var link = "Here is the link: <a style='color: blue' href='"+ BASE_URL + "/public/products/mapps/" + APP_ID + "/"+PROD + "'>Download</a>" ;
         $("#downloadArea").html(link);
         $("#captcha_area").html("");
       }
    });
  });
});