function announcementMoreContent(blockID, tokenName) {
	if (typeof _compTextarea["more_content" + blockID] == "undefined") {
		_compTextarea["more_content" + blockID] = new compTextarea();
		_compTextarea["more_content" + blockID].setUploadAction(_js_url + "/modules/announcement/announcement_edit.php");
		_compTextarea["more_content" + blockID].setTokenName(tokenName);
		_compTextarea["more_content" + blockID].popupPrefix = "more_content";
		_compTextarea["more_content" + blockID].textareaEditShow("more_content" + blockID, "more_content" + blockID, "full");
	}
}

function announcementSetTextarea(blockID, form_el) {
	if (typeof _compTextarea["content" + blockID] != "undefined") {
		form_el.content.value = _compTextarea["content" + blockID].getTextArea();
	}
	if (typeof _compTextarea["more_content" + blockID] != "undefined") {
		form_el.more_content.value = _compTextarea["more_content" + blockID].getTextArea();
	}
}