function submitForm() {
		var searchKey = document.form1.searchKey.value.Trim();
		if(searchKey == "我的搜索") {
			alert('请输入搜索关键字');
			return false;
		} else if(searchKey == null || searchKey == "") {
			alert('请输入搜索关键字');
			return false;
		} else {
			document.form1.submit();
		}
}

	
	
//进入客服中心
function goCustomer(url,str){
  	if(readCookie('NLI') == '' && readCookie('NLI2') == '') {
	 	alert('请先登录');
		var leg = url.length;		
        
		parent.location = url+'channel.nhn?menuId=10.1.0&next_url=http%3A%2F%2F'+url.substring(7,(leg-1))+'%2Fchannel.nhn%3FmenuId%3D9.2.0';  	
		 
	 }else{
	    window.location='customer.nhn?m='+str+'&bbsId=CUSTOMER&forumId=161';
	 }
}


