﻿//<!-- 
//屏蔽js错误 
//function ResumeError() { 
//return true; 
//} 
//window.onerror = ResumeError; 
// --> 

var txtSearch = "模板、网店模板、模板教程、CMS模板";
function txtFocus(input)
{
	if(input.value == txtSearch)
	{
		input.value="";
	}
}
function txtBlur(input)
{
	if(input.value=="")
	{
		input.value = txtSearch;
	}
}
function topOnSearchCheckAndSubmit(){
        var topKeyword = document.getElementById("topKeyword").value;
        if (topKeyword == "" || topKeyword == null || topKeyword=="模板、网店模板、模板教程、CMS模板") {
            alert("请填写您想搜索的关键词");
			document.getElementById("topKeyword").focus();
            return false;
        }
        else {        
            var nodeSel = document.getElementById("topnodeId");
            var topFieldOptionSel = document.getElementById("topFieldOption");
            window.location = "/search.aspx?searchtype=0&Keyword=" + escape(topKeyword);
        }
    }

function jump(aa){
	var str=aa;
	 window.location = "/search.aspx?searchtype=0&Keyword=" + escape(aa);
}