﻿


//处理多语言问题
 lgGB2312=null;
 lgBig5=null;
 lgEnglish=null;
 lgKorean=null;
 lgJapanese=null;


//处理语言问题
if (document.all.GB2312!=null){
	if(lgGB2312!=null){
		document.all.GB2312.style.display="";
		document.all.GB2312.href=lgGB2312;
	}
}
				
if (document.all.Big5!=null){
	if(lgBig5!=null){
		document.all.Big5.style.display="";
		document.all.Big5.href=lgBig5;
	}
}
				
if (document.all.English!=null){
	if(lgEnglish!=null){
		document.all.English.style.display="";
		document.all.English.href=lgEnglish;
	}
}
	
if (document.all.Korean!=null){
	if(lgKorean!=null){
		document.all.Korean.style.display="";
		document.all.Korean.href=lgKorean;
	}
}
				
if (document.all.Japanese!=null){
	if(lgJapanese!=null){
		document.all.Japanese.style.display="";
		document.all.Japanese.href=lgJapanese;
	}
}
				
//----------------------------------------------------------------------
