function CheckForm(theForm){

    if (theForm.News_Title.value==""){
        alert("温馨小提示:请输入域名主要部分");
        theForm.News_Title.focus();
        return false;
    }
	if (theForm.News_Title.value.indexOf('www')!=-1){
        alert("温馨小提示:不用写www，系统会为您加上");
        theForm.News_Title.focus();
        return false;
    }

	if (theForm.News_Title.value.indexOf('唑')!=-1){
        alert("您有可能发布违法信息,本站拒绝发布-网警通知");
        theForm.News_Title.focus();
        return false;
    }
	if (theForm.News_Title.value.indexOf('招聘挖掘机')!=-1){
        alert("您有可能发布违法信息,本站拒绝发布-网警通知");
        theForm.News_Title.focus();
        return false;
    }
	if (theForm.News_Title.value.indexOf('枪')!=-1){
        alert("您有可能发布违法信息,本站拒绝发布-网警通知");
        theForm.News_Title.focus();
        return false;
    }
	if (theForm.News_Title.value.indexOf('发票')!=-1){
        alert("您有可能发布违法信息,本站拒绝发布-网警通知");
        theForm.News_Title.focus();
        return false;
    }
	if (theForm.News_Title.value.indexOf('办证')!=-1){
        alert("您有可能发布违法信息,本站拒绝发布-网警通知");
        theForm.News_Title.focus();
        return false;
    }
	if (theForm.News_Title.value.indexOf('迷药')!=-1){
        alert("您有可能发布违法信息,本站拒绝发布-网警通知");
        theForm.News_Title.focus();
        return false;
    }
    if (theForm.News_Body.value==""){
        alert("温馨小提示:请输入内空");
        theForm.News_Body.focus();
        return false;
    }
	if (theForm.News_Body.value.indexOf('办证')!=-1){
        alert("您有可能发布违法信息,本站拒绝发布 - 网警通知");
        theForm.News_Body.focus();
        return false;
    }
	if (theForm.News_Body.value.indexOf('迷药')!=-1){
        alert("您有可能发布违法信息,本站拒绝发布 - 网警通知");
        theForm.News_Body.focus();
        return false;
    }
	if (theForm.News_Body.value.indexOf('唑')!=-1){
        alert("请速离开本站 - 网警通知");
        theForm.News_Body.focus();
        return false;
    }
	if (theForm.News_Body.value.indexOf('枪')!=-1){
        alert("请速离开本站 - 网警通知");
        theForm.News_Body.focus();
        return false;
    }
	if (theForm.News_Body.value.indexOf('五折')!=-1){
        alert("您发布违法信息，请速离开 - 网警通知");
        theForm.News_Body.focus();
        return false;
    }
	if (theForm.News_Profile.value==""){
        alert("关健字：请不要写太多，太多就不叫关健字了");
        theForm.News_Profile.focus();
        return false;
    }
	if (theForm.News_Name.value==""){
        alert("名号：写您的网名，会生成域名列表");
        theForm.News_Name.focus();
        return false;
    }
    if (theForm.News_Tel.value==""){
        alert("请写您的QQ号，方便联系");
        theForm.News_Tel.focus();
        return false;
    }
	if (theForm.News_Email.value==""){
        alert("请写价格，不要乱报价");
        theForm.News_Email.focus();
        return false;
    }
		
	    return true;
}






