﻿XMLHttp.sendReq('POST', '/CommonHandler.ashx?action=GetBanner', null, getBanneResult);
function getBanneResult(obj) {
    if (obj.readyState == 4) {
        if (obj.status == 200 || obj.status == 304) {
            $("banner").innerHTML = obj.responseText;
        }
    }
}