﻿/// <reference path="../jquery-1.2.6-vsdoc.js" />

function DeferredContentLoader(method, targetDivClass, loaderDivId) {
    $.ajax({
        type: "GET",
        url: "/Services/DeferredContent.ashx?method=" + method,
        dataType: "html",
        success: function(data) {
            $("." + loaderDivId).remove();
            $("." + targetDivClass).html(data);
        },
        error: function(data) {
            alert(xml);
        }
    });
}

