/*
var myEditor = new YAHOO.widget.SimpleEditor('msgpost', { 
    height: '300px', 
    width: '522px', 
    dompath: true //Turns on the bar at the bottom 
}); 
*/

var myEditor = new YAHOO.widget.SimpleEditor('msgpost', { 
    height: '300px', 
    width: '420px', 
    dompath: false, //Turns on the bar at the bottom 
    handleSubmit: true,
    toolbar: {
    	titlebar: false,
    	buttons: [
    		{group: 'textstyle', label: 'Font Style',
    			buttons: [
    				{type: 'push', label: 'Bold', value: 'bold'},
    				{type: 'push', label: 'Italic', value: 'italic'}
    			]
    		},
    		{type: 'separator'},
    		{group: 'indentlist', label: 'Lists',
    			buttons: [
    				{type: 'push', label: 'Unordered List', value: 'insertunorderedlist'},
    				{type: 'push', label: 'Ordered List', value: 'insertorderedlist'}
    			]
			},
			{type: 'separator'},
			{group: 'insertitem', label: 'Link',
				buttons: [
					{type: 'push', label: 'Create Link', value: 'createlink', disabled: true}
				]
			}
		]
    }
}); 

myEditor.render(); 
