var sysLanguage=new Array(
"<img src='/ETSOOBase/Images/Language/GB.gif' border='0'>","GB","使用中文浏览",
"<img src='/ETSOOBase/Images/Language/EN.gif' border='0'>","EN","View In English"
)
var sysReportResource=new Array()
sysReportResource["GB_Report_OK"]=" OK ";
sysReportResource["EN_Report_OK"]=" OK ";
sysReportResource["GB_Valid_Check"]="Check对象不存在，请查看/ETSOOBase/Script/Valid.js函数ETSOOValidCheck。";
sysReportResource["EN_Valid_Check"]="Object for checking does not exist. Please look over /ETSOOBase/Script/Valid.js.";
sysReportResource["GB_Form_Reset"]="确定要清除所有输入的内容吗？";
sysReportResource["EN_Form_Reset"]="Do you want to clear all contents you input?";
sysReportResource["GB_Editor_New"]="编辑框的信息将被清空，确定要这么做么？";
sysReportResource["EN_Editor_New"]="Do you want to clear all contents in the edit area?";
sysReportResource["GB_Editor_Find"]="文档搜索完毕！";
sysReportResource["EN_Editor_Find"]="Finished searching the document!";
sysReportResource["GB_Editor_Save"]="信息保存成功！";
sysReportResource["EN_Editor_Save"]="Saved successfully!";
sysReportResource["GB_InsertImage_URL"]="不是有效的图片地址！";
sysReportResource["EN_InsertImage_URL"]="The image path is not valid!";

function GetLanguageList(strCulture)
{
	var numLen=sysLanguage.length;
	var strList="";
	for(var numI=0;numI<numLen;numI+=3)
	{
		var strText=sysLanguage[numI];
		var strValue=sysLanguage[numI+1];
		var strTip=sysLanguage[numI+2];
		if(strValue==strCulture)strList=strList+' <span style="border-bottom:1px solid #111111">'+strText+"</span>";
		else strList=strList+' <a href="?sysCulture='+strValue+'" title="'+strTip+'">'+strText+'</a>';
	}
	document.write(strList);
}