function setNotify(msg) {
	var obj = $('_ajax_process_bar');
	if (msg == false) {
		obj.innerHTML = "";
		obj.style.display = "none";
	} else {
		obj.innerHTML = msg;
		obj.style.display = "";
	}
}
function ChangeArticleStatus(id,s) {
	if (s==4) {
		recommendArticle(id,1);
	} else {
		recommendArticle(id,0);
	}
	
	if (s==3) {
		$('article-'+id).style.backgroundColor = '#FFD9DF';
	} else if (s==2) {
		$('article-'+id).style.backgroundColor = '#E0FFFF';
	} else {
		$('article-'+id).style.backgroundColor = '';
	}
}
function recommendArticle(id,s) {
	var obj = $('article-' + id);
	h1 = obj.getElementsByTagName("h3");
	h1 = h1[0];
	if (s == 1) {
		h1.className = "entry-header-recommend";
	} else {
		h1.className = "entry-header";
	}
}
function removeNewsTag_p(tagid) {
	theTag = $(tagid);
	Fat.fade_element(tagid,30,600,'#FF889A');
	setTimeout("theTag.parentNode.removeChild(theTag);",605);
}