function showPostEditor () {
	var sNOP = "Found You";
	if (document.getElementById("PostEditor")) {
		document.getElementById("PostEditor").className = "showeditor";
		if (document.getElementById('elm1')) {
			tinyMCE.execCommand('mceAddControl', false, 'elm1');
		}
	}
}

function hidePostEditor () {
	if (document.getElementById('elm1')) {
		if (tinyMCE.getInstanceById('elm1')) {
			tinyMCE.execCommand('mceFocus', false, 'elm1');                    
			tinyMCE.execCommand('mceRemoveControl', false, 'elm1');
			tinyMCE.triggerSave();
		}
	}
	if (document.getElementById("PostEditor")) {
		document.getElementById("PostEditor").className = "hideeditor";
	}
}

function SaveMCE() {
	if (tinyMCE.getInstanceById('elm1')) {
		document.getElementById('elm1').value = tinyMCE.activeEditor.getContent();
	}
}

