function loadHtml(id, path) {
    div_id = "#" + id;
    $.ajaxSetup({
        cache: false
    });
    $(div_id).load(path);
}
