 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<20;i++){/* 最多支持3个标签 */
				if(GetObj("prod"+i)&&GetObj("ADm"+i)){
					GetObj("prod"+i).style.display = 'none';
					GetObj("ADm"+i).className = "wguo";
				}
			}
			if(GetObj("prod"+index)&&GetObj("ADm"+index)){
				GetObj("prod"+index).style.display = 'block';
				GetObj("ADm"+index).className = "hguo";
			}
		}
 
 function ADmenua(index,flag){
			for(var i=0;i<20;i++){/* 最多支持3个标签 */
				if(GetObj("proda"+i)&&GetObj("ADma"+i)){
					GetObj("proda"+i).style.display = 'none';
					GetObj("ADma"+i).className = "";
				}
			}
			if(GetObj("proda"+index)&&GetObj("ADma"+index)){
				GetObj("proda"+index).style.display = 'block';
				GetObj("ADma"+index).className = "cls_tab_nav_li_first";
			}
		}
 
