// 左边分类的伸缩函数
function show(no, classid){
var Obj=document.getElementById("menusub" + no);//eval("menusub" + no);
	//判断是否有子目录
	if((Obj.innerHTML).length < 150){
		//alert( (Obj.innerHTML).length < 150 )
		//无子目录
		// window.open('infolist.asp?cateid=' + classid, '_self');
		// return ;
	}
//var ImgObj=eval("menuimg"+ no);
var tempColl = document.all.tags("div");
 for(i=0; i<tempColl.length; i++)
 {
  if ((tempColl(i).id != Obj.id) && ((tempColl(i).className == "menusub"))){  
   tempColl(i).style.display = "none";
   }
   
 }
if(Obj.style.display=='none')
 {
   Obj.style.display='';
  // ImgObj.src='bbs_image/forum_parent_1.gif';
 }
else
 {
   Obj.style.display='none';
   //ImgObj.src='bbs_image/forum_parent_0.gif';
 }
}






