document.observe("dom:loaded", onDocComplete);



function submitForm(elementId)
{
	$(elementId).submit();
}

function onDocComplete(evt)
{	
	setTimeout(initMCE, 500);
}

function initMCE()
{
	//return;
	tinyMCE.init(
			{
				mode : 'textareas', 
				theme : 'advanced',
				plugins : 'spellchecker,inlinepopups,searchreplace,contextmenu,paste',
				theme_advanced_buttons1 : 'spellchecker,|,bold,italic,underline,strikethrough,|,' +
								'link, unlink, anchor,cleanup,help,code,|,' +
								'forecolor,fontsizeselect,|,' +
								'outdent,indent,|,undo,redo',
				theme_advanced_buttons2 : '',
				theme_advanced_buttons3 : '',
				theme_advanced_buttons4 : '',
				theme_advanced_toolbar_location : 'top',
				theme_advanced_toolbar_align : 'left',
				theme_advanced_statusbar_location : '',
				spellchecker_rpc_url: "./spellchecker/rpc.php"
			});
}





