	tinyMCE.init({
		theme : "advanced",
		mode : "textareas",
		editor_selector : "mceEditor",
		plugins : "paste,searchreplace,table",
		theme_advanced_disable : "styleselect",
		theme_advanced_buttons1_add : "forecolor",
		theme_advanced_buttons2_add : "pastetext,pasteword,selectall,search,replace",
		theme_advanced_buttons3_add : "tablecontrols",
		onchange_callback : "CheckSize", 
		handle_event_callback : "CheckSize", 
		convert_urls: false
	});
	
	function CheckSize() 
	{ 
		var editor_id=tinyMCE.selectedInstance.formTargetElementId;
		var Limit=document.getElementById(editor_id + 'Max').innerHTML; 
		var Show=editor_id + 'Count'; 
		var x=tinyMCE.getContent(); 
		if (x.length>Limit&&Limit>0) { 
			x=x.substring(0, Limit-10); 
			tinyMCE.setContent(x); 
			alert('You have reached the maximum size for this field');
		}; 
		document.getElementById(Show).innerHTML=Limit-x.length;

		return true; 
	} 

