function createSimplePost() {
	
	if (((typeof document.getElementById) == "function") || ((typeof document.getElementById) == "object")) {
		
		var contentNode = document.getElementById("contentbody");
		var outputHtml = "";
		
		if ((confirm("Создать выпуск рассылки на основе выбранной статьи?")) && (contentNode) && (contentNode.childNodes.length > 0)) {
		
			var i = 0;
			
			while (i < contentNode.childNodes.length) {
			
				if ((contentNode.childNodes[i]) && ((contentNode.childNodes[i].nodeType == 1) || (contentNode.childNodes[i].nodeType == 3))) {
					
					if ((contentNode.childNodes[i].nodeType == 1) && (contentNode.childNodes[i].className != "printfooter") && (contentNode.childNodes[i].id != "catlinks")) {
					
						outputHtml += "<" + contentNode.childNodes[i].nodeName + ">" + contentNode.childNodes[i].innerHTML + "</" + contentNode.childNodes[i].nodeName + ">";
					}
					else if (contentNode.childNodes[i].text) {
					
						outputHtml += contentNode.childNodes[i].text;
					}
				}
					
				i++;
			}
			
			outputHtml = outputHtml.replace(/class\=\"editsection\"/ig, "style=\"display: none\"");
			
			var sendForm = document.createElement("form");
			sendForm.method = "POST";
			sendForm.action = "/subscribe/admin/index.php?extension=subscribe&page=add_mailing";
			sendForm.name = "sendForm";
			
			var sendArea = document.createElement("textarea");
			sendArea.value = outputHtml.replace(/href\=\"\//, "href=\"http://www.psychologos.ru/");
			sendArea.name = "subscribeContent";
			
			var subscribeTitle = document.createElement("input");
			subscribeTitle.type = "text";
			subscribeTitle.name = "subscribeTitle";
			subscribeTitle.value = document.title;
			
			sendForm.appendChild(subscribeTitle);
			sendForm.appendChild(sendArea);
			sendForm.style.position = "absolute";
			sendForm.style.visibility = "hidden";
			
			document.body.appendChild(sendForm);
			
			sendForm.submit();
		}
	}
}