document.write("<div class='jb_search_bak'>");
document.write("<form id=fastSimpleSearch name=fastSimpleSearch method=get action="+JB_SEARCH_HOST+"/index.php onsubmit='return productSimpleSearch(true)'>");
document.write("<ul>");
document.write("<li class='jb_merch_search'><input type='radio' name=searchAction value='doSearch' checked style='background-color:transparent;border:none; height:auto;'/>商品</li>");
document.write("<li><input type='radio' name=searchAction value='doSearchSupplier' style='background-color:transparent;border:none; height:auto;'/>供应商</li>");
document.write("<li class='jb_search_text'><input name=productKeywords id=productKeywords type=text size=45 style='height:20px; font-size:12px;width:425px;'></li>");
document.write("<li><a id=bntSearch href='#' onclick='return productSimpleSearch(false)'><img src='"+JB_WPIC_HOST+"/images/topbar/top_btn_search.gif' style='cursor:pointer;'/></a></li>");
document.write("<li class='jb_hlever_search'><a href="+JB_SEARCH_HOST+"/index.php?akm=product&aka=advanced>[高级搜索]</a></li>");
document.write("<li style=' float:right; margin-right:10px;'>客服热线：400-777-0120</li>");
document.write("</ul>");
document.write("<input type=hidden name=akm value=product />");
document.write("<input type=hidden name=aka id='searchBarAka' />");
document.write("</form>");
document.write("</div>");
document.write("<div class='jb_hot_search'>");
document.write("<ul>");
document.write("<li class='jb_hot_search_l'></li>");
document.write("<li class='jb_hot_search_m'>");
document.write("<ul>");
document.write("<li style=' margin-right:0px;'>热门搜索：</li>");
if (typeof(_JINBAO_HOT_SEARCH_WORDS[_JINBAO_BAR_INDEX]) != "undefined")
{
	var words = _JINBAO_HOT_SEARCH_WORDS[_JINBAO_BAR_INDEX];
	for (i=0; i<words.length; i++)
	{
		if (words[i][1] != "")
			document.write("<li><a href='"+words[i][1]+"'>"+words[i][0]+"</a></li>");
	}
}
document.write("</ul>");
document.write("</li>");
document.write("<li class='jb_hot_search_r'></li>");
document.write("</ul>");
document.write("</div>");

function productSimpleSearch(autoSubmit)
{
	var fastSimpleSearch = document.getElementById("fastSimpleSearch");
	var productKeywords = fastSimpleSearch.productKeywords;
	var searchActions = fastSimpleSearch.searchAction;
	var aka = "doSearch";
	for (var i=0; i<searchActions.length; i++)
	{
		if (searchActions[i].checked)
		{
			aka = searchActions[i].value;
			break;
		}
	}
	if (productKeywords.value == ""  && aka== "doSearch")
		fastSimpleSearch.searchBarAka.value = "productCategoryBrowse";
	else if (aka=="doSearch") //使用搜索引擎搜
	{
		window.location.href = "http://s.jinbao.com/search.action?name=" + encodeURIComponent(productKeywords.value) + "&oldName=" + encodeURIComponent(productKeywords.value) + "&curPage=1&categoryId=0&categoryPath=0&sortSelect=1&countPerPages=20";
		return false;
	}
	else
		fastSimpleSearch.searchBarAka.value = aka;
	if (autoSubmit)
		return true;
	else
		fastSimpleSearch.submit();
}