		function Getobj(objName){
			if(document.getElementById){
				return eval('document.getElementById("' + objName + '")');
			}else if(document.layers){
				return eval("document.layers['" + objName +"']");
			}else{
				return eval('document.all.' + objName);
			}
		}
		function admenu(index,flag){
			for(var i=0;i<3;i++){/* 最多支持3个标签 */
				if(Getobj("adcon"+i)&&Getobj("adm"+i)){
					Getobj("adcon"+i).style.display = 'none';
					Getobj("adm"+i).className = "admenuoff";
				}
			}
			if(Getobj("adcon"+index)&&Getobj("adm"+index)){
				Getobj("adcon"+index).style.display = 'block';
				Getobj("adm"+index).className = "admenuon";
			}
		}
