function createSimplePost() {
	
	if (((typeof document.getElementById) == "function") || ((typeof document.getElementById) == "object")) {
		
		var contentNode = document.getElementById("content");
		var outputHtml = "";
		
		if (confirm("Создать выпуск рассылки на основе выбранной статьи?")) {
		
			for (var i = 0; i < contentNode.childNodes.length; i++) {
			
				if ((contentNode.childNodes[i].nodeType == 1) && (contentNode.childNodes[i].id == "") && (contentNode.childNodes[i].nodeName != "DIV")) {
					
					outputHtml += "<" + contentNode.childNodes[i].nodeName + ">" + contentNode.childNodes[i].innerHTML + "</" + contentNode.childNodes[i].nodeName + ">";
				}
			}
			
			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();
		}
	}
}