function formCheck()
{
	
if(document.adv.content.value == "")
{
	alert("请填上您的建议！");
	return false;
}

var str1 = document.adv.sender_email.value
if(str1.indexOf("@") == -1 || str1.indexOf(".") == -1){
	alert("您添的信箱格式不正确！");
	return false;
}
return true;

}
-->