﻿    function GetSearchData(page)
    {
        if(document.SearchForm.KeyWord.value=="")
        {
            alert("请输入关键字！");
            document.SearchForm.KeyWord.focus();
        }
        else
        {
            var keyword=escape(document.SearchForm.KeyWord.value);//unescape
            var categoryId="0"
            var state=document.SearchForm.State.value;
            var parentid="0";
            var Url="/Search/index.html?KeyWord=" + keyword + "&CategoryId=" + categoryId + "&State=" + state + "&ParentID=" + parentid + "&Page=" + page; 
            top.location.href=Url;
        }
        //document.write(Url);
    }
    function GoSearchByKeyword(strval)
    {
        var keyword=escape(strval);//unescape
        var categoryId="0"
        var state="A";
        var parentid=0;
        var Url="/Search/index.html?KeyWord=" + keyword + "&CategoryId=" + categoryId + "&State=" + state + "&ParentID=" + parentid + "&Page=1"; 
        top.location.href=Url;
    }
