      tinyMCE_GZ.init({
	      plugins : 'inlinepopups,paste',
	      themes : 'advanced',
	      languages : 'en',
	      disk_cache : true,
	      debug : false
      });


	    tinyMCE.init({
		    // General options
		    mode : "textareas",
		    theme : "advanced",
		    
		    setup: function(ed){
		    
		      // Force Paste-as-Plain-Text
                      ed.onPaste.add( function(ed, e, o) {
                      ed.execCommand('mcePasteText', true);
                      return tinymce.dom.Event.cancel(e);
                      });

		      ed.onKeyUp.add(
		        function(ed, evt){
		          //do_count();
		          var y = tinyMCE.get('txtArticleContent').getContent();
		          var r = 0;
              a=y.replace(/\s/g,' ');
              a=a.split(' ');
              for (z=0; z<a.length; z++) {if (a[z].length > 0) r++;}
              $('#count').html(r+" of 100 minimum words limit");
		          //alert(y);
		        }
		      );
		    },
		    
		    plugins : "inlinepopups,paste",

		    // Theme options
		    theme_advanced_buttons1 : "newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,undo,redo",
		    theme_advanced_buttons2 : "pastetext,pasteword,|,bullist,numlist,|,link,unlink,anchor,|,hr,image,|,cleanup",		       
		    theme_advanced_buttons3 : "",
		    theme_advanced_toolbar_location : "top",
		    theme_advanced_toolbar_align : "center",		    
		    theme_advanced_resizing : false		    
	    });	    	    	    