﻿function Submit_onclick() {
  if( document.post.Title.value== ""&&document.post.Content.value=="")
	{
		alert("内容不能为空,标题不能为空!");
		return false;
	}
	else if(document.post.Title.value== "")
	{
		alert("帖子标题不能空！");
		return false;
	}
	else if(document.post.Content.value=="")
	{
		alert("帖子内容不能为空!");
		return false;
	}
}

