// JavaScript Document
function expand_suppport_cn(thistag, tag, id, on, off) {
   styleObj=document.getElementById(thistag).style;
   if (styleObj.display=='none') {
	   	styleObj.display='';
		tag.innerHTML = "<img src=\"/branding/cn_images/bullet_bluearrows_s_180.gif\" width=\"8\" height=\"9\" alt=\"\" border=\"0\" /> 了解更多信息";
		if (dom) { 
			if(selected_id != id) { 
				el = document.getElementById(id); 
				el.className = on; 
				el.style.cursor = "pointer"; 
			} 
		}
		disableLink(thistag);
   } else {
	   	styleObj.display='none';
	    tag.innerHTML = "<img src=\"/branding/cn_images/bullet_bluearrows_s.gif\" width=\"8\" height=\"9\" alt=\"\" border=\"0\" /> 了解更多信息";
		if (dom) { 
			if(selected_id != id) { 
				el = document.getElementById(id); 
				el.className = off; 
				el.style.cursor = "pointer"; 
			} 
		}
   }
}
