/**
* @type			显示的类型,是简单的列表,还是分页
* @pagateID 	分页位置对应的ID
* @contentID	取出的内容放置到页面的位置ID
* @URL 			ajaxAction的调用URL
* @params 		请求的参数
* @TURL 	模板路径
* 例如: callAjaxContent({type:'list',pagateID:'pageDiv',contentID:'songDivList',URL:'story!pagate.aigo',params:'story.orderByField=createdate desc',TURL:'./template/story-list.jst.html'})
*/

function searchPro(){
	var item2 = document.getElementById('condition1')
	if(item2.value==''){
		alert('请输入要搜索的关键字！')	
	}else{
		var str = '/product/aigoshop_search.shtml?keyword='+escape(item2.value);
		window.open(str);
	}
}


