function DelSpace(str){	var splitString;splitString = str.split(" ");return splitString.join(""); }
function DoCheckInput()
{
	if( eval(DelSpace('document.Form1.Text1.value')) == "")
	{
		window.alert("请输入正确的证书编号！");
		document.Form1.Text1.focus()
		return;
	}
	if( eval(DelSpace('document.Form1.Text2.value')) == "")
	{
		window.alert("请输入正确的舞摆编号！");
		document.Form1.Text2.focus()
		return;
	}
	document.Form1.action = "pic/WBSearchManager.asp";
	document.Form1.submit();
}
function DoReset()
{
	document.Form1.reset();
}