﻿function deleteBox(id){
	var obj=_ge(id);
	obj.removeNode(true);
}

function setdisplay(_obj)
{
	var obj=_ge(_obj);
	if(obj.style.display == '')
		obj.style.display = 'none';
	else
		obj.style.display = '';
}

function IsDelete(){
	return confirm('您确实要删除吗?');
}


function checkContent() {
 if( document.post.Content.value=="")
	{
		alert("内容不能为空!");
		return false;
	}
}
