

//会员修改资料的JS
function xinxiang()
{	  
	if (document.getElementById ("title").value == "")
	{
	 alert("提示：请填写标题！")
	 document.getElementById ("title").focus();
	 return false;
	}
	if (document.getElementById ("bookstel").value == "")
	{
	 alert("提示：请输入您的联系电话")
	document.getElementById ("bookstel").focus();
	return false;
	}
	if (document.getElementById ("booksname").value == "")
	{
	 alert("提示：请填写你的称呼！")
	 document.getElementById ("booksname").focus();
	 return false;
	}

	if (document.getElementById ("Content").value == "")
	{
	 alert("提示：请填写建议内容！")
	 document.getElementById ("Content").focus();
	 return false;
	}

	if (document.getElementById ("Content").value .length >200)
	{
	 alert("提示：建议内容长度不能超过200个字符！")
	document.getElementById ("Content").focus();
	return false;
	}

}
