<!--
function AX_switchShowHide(target){//arget:欲显示的物件名称 ;
	var obj = MM_findObj(target);
	if(obj!=null){
		if (obj.style.display=='none'){
			obj.style.display='';
		}else{
			obj.style.display='none';
		}
	}	
}
//-->