var mmenus    = new Array();
var misShow   = new Boolean(); 
misShow=false;
var misdown   = new Boolean();
misdown=false;
var msrcel; 
var mfromel;  
var mtoel; 
var musestatus=false;
var mthestatus="";
var mpopTimer = 0;
mmenucolor='#733A3A';mfontcolor='#FFFFFF';mmenuoutcolor='#e3d6d6';mmenuincolor='#733A3A';mmenuoutbordercolor='#733A3A';mmenuinbordercolor='#733A3A';mmidoutcolor='#e3d6d6';mmidincolor='#e3d6d6';mmenuovercolor='#ffffff';mitemedge='0';msubedge='1';mmenuunitwidth=60;mmenuitemwidth=90;mmenuheight=22;mmenuwidth='750';mmenuadjust=10;mmenuadjustV=0;mfonts='font-family: 宋体; font-size: 9pt; color: #FFFFFF; ';mcursor='default';

function stoperror(){
return true;
}
window.onerror=stoperror;
function mpopOut() {
mpopTimer = setTimeout('mallhide()', 500);
}
function getReal(el, type, value) {
	temp = el;
	while ((temp != null) && (temp.tagName != "BODY")) {
		if (eval("temp." + type) == value) {
			el = temp;
			return el;
		}
		temp = temp.parentElement;
	}
	return el;
}


function mMenuRegister(menu) 
{
  mmenus[mmenus.length] = menu
  return (mmenus.length - 1)
}
function mMenuItem(caption,command,target,isline,statustxt,img,sizex,sizey,pos){
	this.caption=caption;
	this.command=command;
	this.target=target;
	this.isline=isline;
	this.statustxt=statustxt;
	this.img=img;
	this.sizex=sizex;
	this.sizey=sizey;
	this.pos=pos;
}
function mMenu(caption,command,target,img,sizex,sizey,pos){
	this.items = new Array();
	this.caption=caption;
	this.command=command;
	this.target=target;
	this.img=img;
	this.sizex=sizex;
	this.sizey=sizey;
	this.pos=pos;
	this.id=mMenuRegister(this);
}
function mMenuAddItem(item)
{
  this.items[this.items.length] = item
  item.parent = this.id;
  this.children=true;
}

mMenu.prototype.addItem = mMenuAddItem;
function mtoout(src){

src.style.borderLeftColor=mmenuoutbordercolor;
src.style.borderRightColor=mmenuinbordercolor;
src.style.borderTopColor=mmenuoutbordercolor;
src.style.borderBottomColor=mmenuinbordercolor;
src.style.backgroundColor=mmenuoutcolor;
src.style.color=mmenuovercolor;
}
function mtoin(src){

src.style.borderLeftColor=mmenuinbordercolor;
src.style.borderRightColor=mmenuoutbordercolor;
src.style.borderTopColor=mmenuinbordercolor;
src.style.borderBottomColor=mmenuoutbordercolor;
src.style.backgroundColor=mmenuincolor;
src.style.color=mmenuovercolor;
}
function mnochange(src){
src.style.borderLeftColor=mmenucolor;
src.style.borderRightColor=mmenucolor;
src.style.borderTopColor=mmenucolor;
src.style.borderBottomColor=mmenucolor;
src.style.backgroundColor='';
src.style.color=mfontcolor;

}
function mallhide(){
	for(var nummenu=0;nummenu<mmenus.length;nummenu++){
		var themenu=document.all['mMenu'+nummenu]
		var themenudiv=document.all['mmenudiv'+nummenu]
                mnochange(themenu);
                mmenuhide(themenudiv);
                }
}
function mmenuhide(menuid){
menuid.style.filter='Alpha(Opacity=100)';
menuid.style.visibility='hidden';
misShow=false;
}
function mmenushow(menuid,pid){
menuid.style.filter='Alpha(Opacity=80)';
menuid.style.left=mposflag.offsetLeft+pid.offsetLeft+mmenuadjust;menuid.style.top=mposflag.offsetTop+mmenutable.offsetHeight+mmenuadjustV+1;
if(mmenuitemwidth+parseInt(menuid.style.left)>document.body.clientWidth)
menuid.style.left=document.body.clientWidth-mmenuitemwidth;
menuid.style.visibility='visible';
misShow=true;
}
function mmenu_over(menuid,x){
mtoel = getReal(window.event.toElement, "className", "coolButton");
mfromel = getReal(window.event.fromElement, "className", "coolButton");
if (mtoel == mfromel) return;
msrcel = window.event.srcElement;
if(x<0){
  misShow = false;
  mallhide();
  mtoout(msrcel);
}else{

  mallhide();
  mtoin(msrcel);
  mmenushow(menuid,eval("mMenu"+x));

}
clearTimeout(mpopTimer);
}
function mmenu_out(menuid){
mtoel = getReal(window.event.toElement, "className", "coolButton");
mfromel = getReal(window.event.fromElement, "className", "coolButton");
if (mtoel == mfromel) return;	
msrcel = window.event.srcElement;
if (misShow){
mtoin(msrcel);
}else{
mnochange(msrcel);
}
mpopOut()
}
function mmenu_down(menuid,x){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
  if(misShow){
  mmenuhide(menuid);
  mtoout(msrcel);
  }
  else{
  mtoin(msrcel);
  mmenushow(menuid,eval("mMenu"+x));
  misdown=true;
  }
}
function mmenu_up(){
  misdown=false;
}
function mmenuitem_over(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
if(misdown){
	mtoin(msrcel);
}
else{
mtoout(msrcel);
}
if(mthestatus!=""){
	musestatus=true;
	window.status=mthestatus;
}
clearTimeout(mpopTimer);
}
function mmenuitem_out(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
mnochange(msrcel);
if(musestatus)window.status="";
mpopOut()
}
function mmenuitem_down(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
mtoin(msrcel)
misdown=true;
}
function mmenuitem_up(menuid){
msrcel = getReal(window.event.srcElement, "className", "coolButton");
mtoout(msrcel)
misdown=false;
}
function mexec2(x){
var cmd;
if(mmenus[x].target=="blank"){
  cmd = "window.open('"+mmenus[x].command+"')";
}else{
  cmd = mmenus[x].target+".location='"+mmenus[x].command+"'";
}
eval(cmd);
}
function mexec(x,i){
var cmd;
if(mmenus[x].items[i].target=="blank"){
  cmd = "window.open('"+mmenus[x].items[i].command+"')";
}else{
  cmd = mmenus[x].items[i].target+".location='"+mmenus[x].items[i].command+"'";
}
eval(cmd);
}
function mbody_click(){

if (misShow){
	msrcel = getReal(window.event.srcElement, "className", "coolButton");
	for(var x=0;x<=mmenus.length;x++){
		if(msrcel.id=="mMenu"+x)
		return;
	}
	mallhide();
}
}
document.onclick=mbody_click;
var mMenuBodyRef;
function mwritetodocument(){
      var mwb=1;
      for(var i in document.all){
              if (document.all[i].tagName == 'BODY'){
                     mMenuBodyRef = document.all[i]
                     var stringx='<div id="mposflag" style="position:absolute;"></div><table  id=mmenutable border=0 cellpadding=0 cellspacing=2 width='+mmenuwidth+' height='+mmenuheight+' bgcolor='+mmenucolor+
                     ' onselectstart="event.returnValue=false"'+
                     ' style="filter:Alpha(Opacity=80);cursor:'+mcursor+';'+mfonts+
                     ' border-left: '+mwb+'px solid '+mmenuoutbordercolor+';'+
                     ' border-right: '+mwb+'px solid '+mmenuinbordercolor+'; '+
                     'border-top: '+mwb+'px solid '+mmenuoutbordercolor+'; '+
                     'border-bottom: '+mwb+'px solid '+mmenuinbordercolor+'; padding:0px"><tr>'
                     for(var x=0;x<mmenus.length;x++){
                     	var thismenu=mmenus[x];
                     	var imgsize;
                     	      if(thismenu.sizex=="0"&&thismenu.sizey=="0"){
                     	        imgsize="";
                     	      }else{
                     	        imgsize=" width="+thismenu.sizex+" height="+thismenu.sizey;
                     	      }
                     	var ifspace;
                     	      if(thismenu.caption==""){
                     	        ifspace="";
                     	      }else{
                     	        ifspace=" ";
                     	      }
                     	stringx += "<td class=coolButton id=mMenu"+x+" style='border: "+mitemedge+"px solid "+mmenucolor+
                     	"' width="+mmenuunitwidth+"px onmouseover=mmenu_over(mmenudiv"+x+
                     	","+x+") onmouseout=mmenu_out(mmenudiv"+x+
                     	") onmousedown=mmenu_down(mmenudiv"+x+","+x+")";
                     	      if(thismenu.command!=""){
                     	          stringx += " onmouseup=mexec2("+x+");mmenu_up();";
                     	      }else{
                     	      	  stringx += " onmouseup=mmenu_up()";
                     	      }
                     	      if(thismenu.pos=="0"){
                     	          stringx += " align=center><img align=absmiddle src="+thismenu.img+imgsize+">"+ifspace+thismenu.caption+"</td>";	
                     	      }else if(thismenu.pos=="1"){
                     	          stringx += " align=center>"+thismenu.caption+ifspace+"<img align=absmiddle src="+thismenu.img+imgsize+"></td>";	
                     	      }else if(thismenu.pos=="2"){
                     	          stringx += " align=center background="+thismenu.img+">"+thismenu.caption+"</td>";	
                     	      }else{
                     	          stringx += " align=center>"+thismenu.caption+"</td>";
                     	      }
                     	stringx += "";
                     }
                     stringx+="<td width=*> </td></tr></table>";
                     
                     
                     for(var x=0;x<mmenus.length;x++){
                     	thismenu=mmenus[x];
                        if(x<0){
                        stringx+='<div id=mmenudiv'+x+' style="visiable:none"></div>';
                        }else{
                        stringx+='<div id=mmenudiv'+x+
                        ' style="filter:Alpha(Opacity=80);cursor:'+mcursor+';position:absolute;'+
                        'width:'+mmenuitemwidth+'px; z-index:'+(x+100);
                        if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
                        stringx+=';border-left: 1px solid '+mmidoutcolor+
                        ';border-top: 1px solid '+mmidoutcolor;}
                        stringx+=';border-right: 1px solid '+mmenuinbordercolor+
                        ';border-bottom: 1px solid '+mmenuinbordercolor+';visibility:hidden" onselectstart="event.returnValue=false">\n'+
                     	'<table  width="100%" border="0" height="100%" align="center" cellpadding="0" cellspacing="2" '+
                     	'style="'+mfonts+' border-left: 1px solid '+mmenuoutbordercolor;
                        if(mmenuinbordercolor!=mmenuoutbordercolor&&msubedge=="0"){
                     	stringx+=';border-right: 1px solid '+mmidincolor+
                     	';border-bottom: 1px solid '+mmidincolor;}
                     	stringx+=';border-top: 1px solid '+mmenuoutbordercolor+
                     	';padding: 4px" bgcolor='+mmenucolor+'>\n'
                     	for(var i=0;i<thismenu.items.length;i++){
                     		var thismenuitem=thismenu.items[i];
                     		var imgsize;
                     	          if(thismenuitem.sizex=="0"&&thismenuitem.sizey=="0"){
                     	             imgsize=""
                     	          }else{
                     	             imgsize=" width="+thismenuitem.sizex+" height="+thismenuitem.sizey
                     	          }
                     	        var ifspace;
                     	          if(thismenu.caption==""){
                     	            ifspace="";
                     	          }else{
                     	            ifspace=" ";
                     	          }
                     		if(!thismenuitem.isline){
                     		stringx += "<tr><td class=coolButton style='border: "+mitemedge+"px solid "+mmenucolor+
                     		"' width=100% height=15px onmouseover=\"mthestatus='"+thismenuitem.statustxt+"';mmenuitem_over(mmenudiv"+x+
                     		");\" onmouseout=mmenuitem_out(mmenudiv"+x+
                     		") onmousedown=mmenuitem_down(mmenudiv"+x+") onmouseup=";
 				stringx += "mexec("+x+","+i+");mmenuitem_up(mmenudiv"+x+") ";
 				if(thismenuitem.pos=="0"){
                     	            stringx += "><img align=absmiddle src="+thismenuitem.img+imgsize+">"+ifspace+thismenuitem.caption+"</td></tr>";	
                     	          }else if(thismenuitem.pos=="1"){
                     	            stringx += ">"+thismenuitem.caption+ifspace+"<img align=absmiddle src="+thismenuitem.img+imgsize+"></td></tr>";	
                     	          }else if(thismenuitem.pos=="2"){
                     	            stringx += "background="+thismenuitem.img+">"+thismenuitem.caption+"</td></tr>";	
                     	          }else{
                     	            stringx += ">"+thismenuitem.caption+"</td></tr>";
                     	          }
 				}else{
                     		stringx+='<tr><td height="1" background="hr.gif"><img border="0" src="none.gif" width="1" height="1"></td></tr>\n';
                     		}
                     	}stringx+='</table>\n</div>'
                     	}
                     	
                }
                
                     document.write("<div align='left'>"+stringx+"</div>");
      break
    }
  }
}


function document_load(){
	mwritetodocument();


}
mpmenu0=new mMenu('首    页','http://202.113.80.13','self','','','','');

mpmenu1=new mMenu('天商新闻','','blank','','','','');
mpmenu1.addItem(new mMenuItem('校园新闻','http://202.113.80.13/web/list.htm','blank',false,'校园新闻','','','',''));
mpmenu1.addItem(new mMenuItem('热点新闻','http://202.113.80.13/web/webnews/hotnews.htm','blank',false,'热点新闻','','','',''));
mpmenu1.addItem(new mMenuItem('媒体天商','http://202.113.80.13/web/xiaoyuanwenhua/meititianshang.htm','blank',false,'媒体天商','','','',''));
mpmenu1.addItem(new mMenuItem('部门工作动态','http://202.113.80.13/web/ListDept.htm','blank',false,'部门工作动态','','','',''));
mpmenu1.addItem(new mMenuItem('天商校报','http://202.113.80.13:8080/yb/index.html','blank',false,'天商校报','','','',''));
mpmenu1.addItem(new mMenuItem('广播在线','http://202.113.80.13/web/gbt/index.asp','blank',false,'广播在线','','','',''));

mpmenu2=new mMenu('学校概况','','blank','','','','');
mpmenu2.addItem(new mMenuItem('学校简介','../xueyuangaikuang/xueyuangaikuang.htm','blank',false,'学校简介','','','',''));
mpmenu2.addItem(new mMenuItem('办学思想','../xueyuangaikuang/banxuesixiang.htm','blank',false,'办学思想','','','',''));
mpmenu2.addItem(new mMenuItem('历史回眸','../xueyuangaikuang/lishi.htm','blank',false,'历史回眸','','','',''));
mpmenu2.addItem(new mMenuItem('现任领导','../xueyuangaikuang/xianrenlingdao.htm','blank',false,'现任领导','','','',''));
mpmenu2.addItem(new mMenuItem('历任领导','../xueyuangaikuang/lirenlingdao.htm','blank',false,'历任领导','','','',''));
mpmenu2.addItem(new mMenuItem('坐落位置','../xueyuangaikuang/zuoluoweizhi.htm','blank',false,'坐落位置','','','',''));
mpmenu2.addItem(new mMenuItem('校园导图','../xueyuangaikuang/xiaoyuandaotu.htm','blank',false,'校园导图','','','',''));
mpmenu2.addItem(new mMenuItem('校园风景','../fuwuzhinan/view.htm','blank',false,'校园风景','','','',''));
mpmenu2.addItem(new mMenuItem('职能部门','../xueyuangaikuang/zhineng.htm','blank',false,'职能部门','','','',''));
mpmenu2.addItem(new mMenuItem('群众组织','../xueyuangaikuang/qunzhongzuzhi.htm','blank',false,'群众组织','','','',''));
mpmenu2.addItem(new mMenuItem('教辅部门','../xueyuangaikuang/jiaofu.htm','blank',false,'教辅部门','','','',''));
mpmenu2.addItem(new mMenuItem('后勤部门','../xueyuangaikuang/houqin.htm','blank',false,'后勤部门','','','',''));

mpmenu3=new mMenu('二级学院','','blank',false,'二级学院','','','');
mpmenu3.addItem(new mMenuItem('商学院','http://202.113.80.13:8080/sxy/index.php','blank',false,'商学院','','','',''));
mpmenu3.addItem(new mMenuItem('经济学院','http://202.113.80.13/web/fenyuan/jm/index.asp','blank',false,'经济学院','','','',''));
mpmenu3.addItem(new mMenuItem('公共管理学院','http://202.113.80.13/web/fenyuan/gongguan/index.html','blank',false,'公共管理学院','','','',''));
mpmenu3.addItem(new mMenuItem('法学院','http://yg.tjcu.edu.cn/fxy/','blank',false,'法学院','','','',''));
mpmenu3.addItem(new mMenuItem('马克思主义学院','http://202.113.80.13/web/fenyuan/mks/mysite5/index.htm','blank',false,'马克思主义学院','','','',''));
mpmenu3.addItem(new mMenuItem('外国语学院','http://www2.tjcu.edu.cn/wyxy/index.asp','blank',false,'外国语学院','','','',''));

mpmenu3.addItem(new mMenuItem('机械工程学院','http://202.113.80.13/web/fenyuan/jixie/index.htm','blank',false,'机械工程学院','','','',''));
mpmenu3.addItem(new mMenuItem('生物技术与食品科学学院','http://202.113.80.13/web/fenyuan/shengshi/index.htm','blank',false,'生物技术与食品科学学院','','','',''));
mpmenu3.addItem(new mMenuItem('信息工程学院','http://202.113.80.13/web/fenyuan/xxxy/default.asp','blank',false,'信息工程学院','','','',''));
mpmenu3.addItem(new mMenuItem('理学院','http://202.113.80.13/web/fenyuan/lixueyuan/lixueyuan.htm','blank',false,'理学院','','','',''));
mpmenu3.addItem(new mMenuItem('国际教育学院','http://59.67.112.150/','blank',false,'国际教育学院','','','',''));
mpmenu3.addItem(new mMenuItem('TUC-FIU合作学院','http://www.tuc-fiu.cn/web/index.asp','blank',false,'TUC-FIU合作学院','','','',''));
mpmenu3.addItem(new mMenuItem('高职与继续教育学院','http://202.113.80.13/web/fenyuan/web/default.asp','blank',false,'高职与继续教育学院','','','',''));
mpmenu3.addItem(new mMenuItem('体育卫生部','http://202.113.80.13/web/fenyuan/twb/index.htm','blank',false,'体育卫生部','','','',''));
mpmenu3.addItem(new mMenuItem('大学外语教学部','','blank',false,'大学外语教学部','','','',''));

mpmenu4=new mMenu('人才师资','','blank','','','','');
mpmenu4.addItem(new mMenuItem('队伍建设','../duiwujianshe/shizigaikuang.htm','blank',false,'队伍建设','','','',''));
mpmenu4.addItem(new mMenuItem('名师风采','../duiwujianshe/baiminjiaoshou.htm','blank',false,'名师风采','','','',''));
mpmenu4.addItem(new mMenuItem('优秀教师','../duiwujianshe/quanguoyouxiujiaoshi.htm','blank',false,'','','','',''));
mpmenu4.addItem(new mMenuItem('招聘信息','../duiwujianshe/zhaopin.htm','blank',false,'招聘信息','','','',''));

mpmenu5=new mMenu('教育教学','','blank','','','','');
mpmenu5.addItem(new mMenuItem('教学管理制度','http://202.113.208.111/cms/index.php?option=com_content&task=view&id=47&Itemid=47','blank',false,'教学管理制度','','','',''));
mpmenu5.addItem(new mMenuItem('专业设置','../xueyuangaikuang/zhuanyeshezhi.htm','blank',false,'专业设置','','','',''));
mpmenu5.addItem(new mMenuItem('本科生教育','http://202.113.208.111','blank',false,'本科生教育','','','',''));
mpmenu5.addItem(new mMenuItem('研究生教育','http://202.113.80.15/yanjiusheng/index.php','blank',false,'研究生教育','','','',''));
mpmenu5.addItem(new mMenuItem('高职教育','http://www.tjcu.edu.cn/web/fenyuan/web/default.asp','blank',false,'高职教育','','','',''));
mpmenu5.addItem(new mMenuItem('继续教育','http://www.tjcu.edu.cn/web/fenyuan/web/default.asp','blank',false,'继续教育','','','',''));
mpmenu5.addItem(new mMenuItem('精品课程','../wangshangketang/index.htm','blank',false,'精品课程','','','',''));
mpmenu5.addItem(new mMenuItem('教学实践','http://202.113.80.13/web/shixijidi/index.html','blank',false,'教学实践','','','',''));

mpmenu6=new mMenu('学科与科研','','blank','','','','');
mpmenu6.addItem(new mMenuItem('学科建设','../kexueyanjiu/zhongdianxueke.htm','blank',false,'学科建设','','','',''));
mpmenu6.addItem(new mMenuItem('科研项目','../kexueyanjiu/guojiaxiangmu.htm','blank',false,'科研项目','','','',''));
mpmenu6.addItem(new mMenuItem('科研动态','http://www.cutech.edu.cn/','blank',false,'科研动态','','','',''));
mpmenu6.addItem(new mMenuItem('科研成果','../kexueyanjiu/lunwenzhuanzhu.htm','blank',false,'科研成果','','','',''));
mpmenu6.addItem(new mMenuItem('科研机构','../kexueyanjiu/keyanjigou.htm','blank',false,'科研机构','','','',''));
mpmenu6.addItem(new mMenuItem('学术刊物','../kexueyanjiu/xushukanwu.htm','blank',false,'学术刊物','','','',''));

mpmenu7=new mMenu('招生就业','','blank','','','','');
mpmenu7.addItem(new mMenuItem('本科生招生','http://zs.tjcu.net/','blank',false,'本科生招生','','','',''));
mpmenu7.addItem(new mMenuItem('本科生就业','http://jy.tsmm.com/','blank',false,'本科生就业','','','',''));
mpmenu7.addItem(new mMenuItem('研究生招生','http://202.113.80.15/yanjiusheng/list.php?channel=招生信息','blank',false,'研究生招生','','','',''));

mpmenu8=new mMenu('国际交流','','blank','','','','');
mpmenu8.addItem(new mMenuItem('国际教育学院','http://202.113.87.60','blank',false,'国际教育学院','','','',''));
mpmenu8.addItem(new mMenuItem('国际交流处','http://202.113.80.13/web/fenyuan/guojijiaoliuchu/index.html','blank',false,'国际交流处','','','',''));
mpmenu8.addItem(new mMenuItem('TUC-FIU','http://hospitality.tjcu.edu.cn/','blank',false,'TUC-FIU','','','',''));

mpmenu9=new mMenu('信息服务','','blank','','','','');
mpmenu9.addItem(new mMenuItem('图书馆','http://202.113.82.2/','blank',false,'图书馆','','','',''));
mpmenu9.addItem(new mMenuItem('教学资源网','http://202.113.80.70:8888/','blank',false,'教学资源网','','','',''));
mpmenu9.addItem(new mMenuItem('现代商学','http://202.113.82.2/dhshangxue/sxxx.asp','blank',false,'现代商学','','','',''));
mpmenu9.addItem(new mMenuItem('VOD视频点播','http://202.113.80.83/','blank',false,'VOD视频点播','','','',''));
mpmenu9.addItem(new mMenuItem('网络运维平台','http://nic.tjcu.edu.cn','blank',false,'网络运维平台','','','',''));
mpmenu9.addItem(new mMenuItem('校园服务','../houqin/index.htm','blank',false,'校园服务','','','',''));
mpmenu9.addItem(new mMenuItem('学校日历','http://202.113.80.13/web/fuwuzhinan/rili.htm','blank',false,'学校日历','','','',''));

mpmenu10=new mMenu('校园文化','','blank','','','','');
mpmenu10.addItem(new mMenuItem('学工在线','http://202.113.80.13/web/xuegongzaixian/xuegong/index1024.htm','blank',false,'学工在线','','','',''));
mpmenu10.addItem(new mMenuItem('团委','http://www2.tjcu.edu.cn/tw/index.asp','blank',false,'团委','','','',''));
mpmenu10.addItem(new mMenuItem('学生会','http://www2.tjcu.edu.cn/xsh/index.asp','blank',false,'学生会','','','',''));
mpmenu10.addItem(new mMenuItem('社团联合会','../xueshengshetuan/Default.asp','blank',false,'社团联合会','','','',''));
mpmenu10.addItem(new mMenuItem('邓研会','../deng/index.htm','blank',false,'邓研会','','','',''));


