function adjustFrameSize()
		{
			document.all.mainWorkArea.style.height=mainWorkArea.document.body.scrollHeight<400?400:mainWorkArea.document.body.scrollHeight;
			mainWorkArea.document.body.style.overflowX='auto';
			mainWorkArea.document.body.style.overflowY='auto';
		}		
		
		var sDisplay = "inline";
		function swingShortCutMenu()
		{
			if(sDisplay == "inline")
			{
				sDisplay = "none";
				document.all.tdShortCutMenu.style.display = "none";
				document.all.splitter.background = "images/splitter_r.gif";
			}
			else
			{
				sDisplay = "inline";
				document.all.tdShortCutMenu.style.display = "inline";
				document.all.splitter.background = "images/splitter_l.gif";
			}
		}
				function doExit()
		{
			if (confirm("您确定要退出管理系统吗？"))
			{
				var bRet = logoutGenServer();
				window.opener = null;
				window.close();
			}
		}	

// 下面是menutop的下拉菜单激活框

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("menu");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
 }
 node.onmouseout=function() {
 this.className=this.className.replace("over", "");
 }
 }
 }
 }
}
window.onload=startList;
