function mouseOverLang(btn_name, root){
	if(btn_name=='lang_btn_tc'){
		eval("document.images['"+btn_name+"'].src='/images/button_language_tchi_on.jpg'");
	}
	else if(btn_name=='lang_btn_sc'){
		eval("document.images['"+btn_name+"'].src='/images/button_language_schi_on.jpg'");
	}
	else{
		eval("document.images['"+btn_name+"'].src='/images/button_language_eng_on.jpg'");
	}
}
function mouseOutLang(btn_name, root){
	if(btn_name=='lang_btn_tc'){
		eval("document.images['"+btn_name+"'].src='/images/button_language_tchi_off.jpg'");
	}
	else if(btn_name=='lang_btn_sc'){
		eval("document.images['"+btn_name+"'].src='/images/button_language_schi_off.jpg'");
	}
	else{
		eval("document.images['"+btn_name+"'].src='/images/button_language_eng_off.jpg'");
	}
}
function mouseClickLang(btn_name, root){
	if(btn_name=='lang_btn_tc'){
		eval("document.images['"+btn_name+"'].src='/images/button_language_tchi_on.jpg'");
	}
	else if(btn_name=='lang_btn_sc'){
		eval("document.images['"+btn_name+"'].src='/images/button_language_schi_on.jpg'");
	}
	else{
		eval("document.images['"+btn_name+"'].src='/images/button_language_eng_on.jpg'");
	}
}

function mouseOver(str1, lang, root){
	if(lang=='traditional_chinese'){
		eval("document.images['"+str1+"'].src='"+root+"images/button_"+str1+"_tchi_on.png'");
	}
	else if(lang=='simplified_chinese'){
		eval("document.images['"+str1+"'].src='"+root+"images/button_"+str1+"_schi_on.png'");
	}
	else{
		eval("document.images['"+str1+"'].src='"+root+"images/button_"+str1+"_eng_on.png'");
	}
}

function mouseOut(str1, lang, root){
	if(lang=='traditional_chinese'){
		eval("document.images['"+str1+"'].src='"+root+"images/button_"+str1+"_tchi_off.png'");
	}
	else if(lang=='simplified_chinese'){
		eval("document.images['"+str1+"'].src='"+root+"images/button_"+str1+"_schi_off.png'");
	}
	else{
		eval("document.images['"+str1+"'].src='"+root+"images/button_"+str1+"_eng_off.png'");
	}
}

function mouseClick(str1, lang, root){
	if(lang=='traditional_chinese'){
		eval("document.images['"+str1+"'].src='"+root+"images/button_"+str1+"_tchi_on.png'");
	}
	else if(lang=='simplified_chinese'){
		eval("document.images['"+str1+"'].src='"+root+"images/button_"+str1+"_schi_on.png'");
	}
	else{
		eval("document.images['"+str1+"'].src='"+root+"images/button_"+str1+"_eng_on.png'");
	}
}

function showSubmenu(objectid){
	document.getElementById(objectid).style.visibility = "visible";
}

function hideSubmenu(objectid){
	document.getElementById(objectid).style.visibility = "hidden";
}

function mainMouseOver(str1, lang, root){
	mouseOver(str1, lang, root);
	showSubmenu(str1+"_submenu");
}

function mainMouseOut(str1, lang, root){
	mouseOut(str1, lang, root);
	hideSubmenu(str1+"_submenu");
}

function verticalSubmenuMouseOver(self){
	self.style.color = "#665500";
	self.style.background = "#FFFDDC";
}

function verticalSubmenuMouseOut(self){
	self.style.color = "#FF7700";
	self.style.background = "#EEEEEE";
}

function verticalSubmenuMouseClick(self){
	self.style.color = "#665500";
	self.style.background = "#FFFDDC";
}

function showDIV(objectid){
	document.getElementById(objectid).style.visibility = "visible";
}

function hideDIV(objectid){
	document.getElementById(objectid).style.visibility = "hidden";
}

function popUpCorpValue(URL){
	CorpValueWin = window.open(URL, 'CorpValueWin', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,hotkeys=0,width=570,height=400');
	CorpValueWin.moveTo(5,5);
	CorpValueWin.focus();
}

function popUpNewsContent(URL){
	CorpValueWin = window.open(URL, 'GroupNewsWin', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,hotkeys=0,width=550,height=400');
	CorpValueWin.moveTo(5,5);
	CorpValueWin.focus();
}

function suspendMarqueeMovement(id){
	document.getElementById(id).scrollAmount=0;
}

function resumeMarqueeMovement(id){
	document.getElementById(id).scrollAmount=1;
}
