//获取遗漏等统计出的号码
function Lottery_stat(name){
	var self = this;
	this.name = name;  //实例名称
	this.img_path = '';
	this.api_url = 'http://tubiao.huacai.com/data/';
	//this.api_url = '/images/js/lottery_stat.test.txt?';
	
	this.data_arr = new Array();

	this.data_is_load = false;
	this.dataOnload = new Function();

}
//
Lottery_stat.prototype.init = function(){
	
}


Lottery_stat.prototype.set_miss_data = function(lottertId ,issue ,lot_arr){
	this.data_arr[lottertId] = new Array();
	this.data_arr[lottertId]['issue'] = issue;
	this.data_arr[lottertId]['data'] = lot_arr;
	
	this.data_is_load = true;

	this.dataOnload();
}


Lottery_stat.prototype.load = function(file){
	load_script(this.api_url + file + "?" + "_t=" + new Date().getTime());
}




