// JavaScript Document
function show(ID, EID, Type) {
	for (i=1; i<=EID; i++) {
		if (i == ID) {
				document.getElementById(Type+i+"div").style.display = "block";
		} else {
				document.getElementById(Type+i+"div").style.display = "none";
		}
	}
}

function MenuSelect(Index) {
	document.getElementById("nav"+Index).className= "curA";
	document.getElementById("LeftMenu"+Index).className = "LeftMenuBar2";
}

function OutMouser(ID) {
	document.getElementById("Menu"+ID).src = "images/index"+(12+ID)+".jpg";
}

function CheckSearch(theForm){
		if (theForm.search.value == "搜索产品或新闻" || theForm.search.value == "")
		{
			alert("请输入产品或新闻！");
			theForm.search.focus();
			return false;
		}
	}
