	
	var http_request = false;
	tinyMCE.init( {
		mode : "none", 
		theme_advanced_toolbar_location : "bottom", 
		plugins : "fullscreen, print",
		theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,bullist,numlist,outdent,indent,sub,sup,fontsizeselect",
		theme_advanced_buttons2 : "cut,copy,paste,undo,redo,separator,link,unlink,separator,image,separator,cleanup,charmap,removeformat,hr,separator,code,separator,help",
		theme_advanced_buttons3 : "",
		height : "200",
		width : "99%",
		theme : "advanced"
		
	
	});
	function EditorOn(id){
		if (tinyMCE.getInstanceById(id) == null) tinyMCE.execCommand('mceAddControl', false, id);
	
	
	}
	window.onload=function(){
		if ( document.getElementById('newsText')){
			EditorOn('newsText');
		}
	}
