﻿function ShowDiv(obj) {
	var liobj = new Array('Iabout', 'Icraft', 'Isuccess');
	for(var i=0; i<liobj.length; i++) 
	{
		document.getElementById(liobj[i]).className = "menuOn";
		var j = i+1;
		document.getElementById("M_" + j.toString()).style.display = "none";
	}
	document.getElementById(liobj[obj-1]).className = "menuOver";
	document.getElementById("M_" + obj.toString()).style.display = "";
	document.body.focus();
}


function OnSearch(Mes,Type,Path)
{
	if (Mes=="")
	{
		alert("关键字不能为空！");
		document.getElementById("TBSearch").focus();
		return false;
	}
	Mes = URLEncode(Mes);
	if (Path=="ProList")
		location.href="/Search.asp?KeyWord="+Mes+"&Type="+Type
	else
		location.href="/Search.asp?KeyWord="+Mes+"&Type="+Type
}


