function editor_value( id) {
	return encodeURIComponent(FCKeditorAPI.__Instances[id].GetHTML()) ;
}

function editor_insert( id , mode ){
	if ( mode == null ){
		mode ='Default'
	}
		var oFCKeditor = new FCKeditor( id , 480 , 400 ,mode) ;
		oFCKeditor.ReplaceTextarea() ;
}