// JavaScript Document
function searchtext(){
   var name=document.getElementById("TextBox3").value;
	//alert(name.length);
	if(name.length<1 || name.length>15)
	{
		alert("内容在1-15位之间!");
		return false;
	}else{
		tChk = /^[^ \s~!@#$%\^\&\*\(\)_\+|\-\=\/\?:;'"\[\{\]\}`\.>,<\\]+$/;
		if(!tChk.exec(name)){
			alert("不得含有特殊符号！");
			return false;
		}else{
			return true;
		}
	}
}
function searchtext2(){
   var name=document.getElementById("TextBox2").value;
	//alert(name.length);
	if(name.length<1 || name.length>15)
	{
		alert("内容在1-15位之间!");
		return false;
	}else{
		tChk = /^[^ \s~!@#$%\^\&\*\(\)_\+|\-\=\/\?:;'"\[\{\]\}`\.>,<\\]+$/;
		if(!tChk.exec(name)){
			alert("不得含有特殊符号！");
			return false;
		}else{
			return true;
		}
	}
}
