function checksubmit(){
    if(document.form1.content.value==''){
		alert("请输入查询条件！");
		return false;
	}
	return true;
}




function doAction(transName){
    if(document.form1.content.value==''){
		alert("请输入查询条件！");
		return;
	}
	document.form1.action="/portal/zh_CN/Home/search/index.html";
	document.form1.method="get";
	document.form1.submit();
 }
