
// 程序初始化网页数据部分
var e; var s='';

e = el('lg_downloadFormal');
if (e && typeof(lg_downFormalInfo)!='undefined'){
	e.href=lg_downFormalInfo.url;
	s = '版本：'+lg_downFormalInfo.ver+'　大小：'+lg_downFormalInfo.size+'　'+lg_downFormalInfo.date;
	e.innerHTML=s;
}
e = el('lg_downloadBeta');
if (e && typeof(lg_downBetaInfo)!='undefined'){
	e.href=lg_downBetaInfo.url;
}
e = el('lg_downloadBetaVer');
if (e && typeof(lg_downBetaInfo)!='undefined'){
	s = '版本：'+lg_downBetaInfo.ver+'　大小：'+lg_downBetaInfo.size+'　'+lg_downBetaInfo.date;
	e.innerHTML=s;
}

e = el('lg_listUpInfo');
if (e && typeof(lg_upInfo)!='undefined'){
	s = '';
	for (var i=lg_upInfo.length-1; i>=0 && i>=lg_upInfo.length-5; i--){
		s+='<li><a href="update.htm">'+lg_upInfo[i]+'</a></li>';
	}
	e.innerHTML=s;
}
e = el('lg_listQaInfo');
if (e && typeof(lg_qaInfo)!='undefined'){
	s = '';
	for (var i=0; i<lg_qaInfo.length && i<5; i++){
		s+='<li><a href="faq.htm">'+lg_qaInfo[i]+'</a></li>';
	}
	e.innerHTML=s;
}
e = el('lg_coDownload');
if (e && typeof(lg_coDownInfo)!='undefined'){
	s = '<strong>推荐高速下载:</strong>';
	for (var i=0; i<lg_coDownInfo.length; i++){
		s+='　<a target=_blank href="'+lg_coDownInfo[i].url+'">'+lg_coDownInfo[i].name+'</a>';
	}
	e.innerHTML=s;
}


