﻿function $(vObjectValue){
	if(typeof(vObjectValue)=="object")
	return vObjectValue;
	else
	return document.getElementById(vObjectValue);	
}
function ShowChild(strURL){
	//控制右边的Frame显示
	var oPageList=$("PageList"),oContent=$("Content");
	if(oPageList && oContent){
		oPageList.style.display="block";
		oContent.innerText="";
		oContent.style.display="none";
		//if(strURL!=null)oPageList.location.href=strURL;
	}
	var e=event.srcElement;//A
	if(e.tagName=="A")e=e.parentNode;
	if(e.tagName=="DIV" && e.className=="HaveChild"){
		e=e.getElementsByTagName("div")[0];//每个栏目下只能有一个子栏目容器
		e.style.display=(e.style.display=="block"?"none":"block");
		//e.style.visibility=(e.style.visibility=="visible"?"hidden":"visible");
	}
}
