function GenerateCaptchaID()
  {
  var random, id;

  random = (Math.floor(Math.random()*50))+1;
  id = parseInt(random);

  return id;
  }
