﻿function showResult(info, showArea) {
    var target = $('#' + showArea);
    target.html(info);
    window.setTimeout(function() { target.html(''); }, 2000);
}
function showProgress(info, showArea) {
    var target = $('#' + showArea);
    target.html(info);
}
