function initMCE()
{
	tinyMCE.init({
		mode : "none",
		theme : "lite",
		add_form_submit_trigger : true,
		auto_reset_designmode : true
	});
}
function toggleEditor(id)
{
	tinyMCE.execCommand('mceAddControl', false, id);
}

function toggleRtaEditors () {
	dojo.query(".rta").forEach(
	    function(selectTag) {
		 	tinyMCE.execCommand('mceAddControl', false, selectTag.id);
	    }
	);
} 