function CheckCreateSn(theform)
{
	if(theform.name.value == "")
	{
		alert("用户名不能为空!");
		return false;
	}

	if(theform.area.value == "")
	{
		alert("地区不能为空!");
		return false;
	}

	if(theform.tel.value == "")
	{
		alert("电话不能为空!");
		return false;
	}
	if(theform.addr.value == "")
	{
		alert("详细地址不能为空!");
		return false;
	}
	if(theform.email.value == "")
	{
		alert("Email不能为空!");
		return false;
	}
	if(theform.qq.value == "")
	{
		alert("QQ不能为空!");
		return false;
	}

	if(theform.usefor.value == "")
	{
		alert("使用目的不能为空!");
		return false;
	}
}

function CheckParseSn(theform)
{
	if(theform.sn.value == "")
	{
		alert("序列号不能为空!");
		return false;
	}
}