var AuctionInfoAutoUpdate = function(properties, timerMaxSecs){
    var updater = {};
    
    updater.properties = properties;
    
    var complete = updater.properties.complete || function(){};
    
    updater.start = function(){
        $.ajax(updater.properties);
    };
    
    updater.properties.complete = function() {
        complete();
        setTimeout(function() {
            updater.start();
        }, timerMaxSecs);
    }
    
    return updater;
}

