﻿$(window).load(function() {    
    $.ajax({
        url: strdomain + "default.aspx/GetVillTabInformation",
        type: "POST",
        contentType: "application/json; charset=utf-8",
        data: "{}",
        async: false,
        dataType: "json",
        success: function(result) { arrVillLoaded = true; eval(result.d); $('#txtVilla').focus(); }
    }); //End Of $ajax
});
