function isSearch_lists(sIndex )
{
var txtS = document.getElementById('txtSou');
if(txtS != null)
{
if(txtS.value == "")
{
alert("请输入要搜索的关键词!");
txtS.focus();
}
else
{
var strUrl = "";
if(sIndex == 1)
strUrl = "page.aspx?cons=";
else if(sIndex == 2)
strUrl = "list.aspx?key=";
this.location.href=strUrl + escape(txtS.value);
}
}
}