function GetCaptcha(id)
{
  a = Math.round(Math.random()*1000);
  path = "/captcha.php?number=" + a;
  document.getElementById(id).src = path;
}
