﻿/// <reference path="Controls.js" />

Controls.Captcha = function (id) {
    this.id = id;
    this.reloadImage = function () {
        $("#" + this.id).attr('src', $("#" + this.id).attr('src') + "q");
    }
}
