


function Language(){
   this.weeks = null;
}
Language.prototype = {

    init : function(){
        if(this.weeks == null){
           this.check();
        }
    },
    /// <summary>
    /// 绘制国际化窗口文本
    /// </summary>
    check : function() {
        sys.behavior.$do("config.ashx","get","language,getInfos",
        function(obj){
           if (obj.readyState==4 || obj.readyState=="complete")
           {
               var doc = obj.responseXML;
               if(doc){
                  sys.tools.c_l(doc);
               }
           }
        });    
    }
}
