function Iniciar() {
		editor.document.designMode = 'On';
	}

	function recortar() {
		editor.document.execCommand('cut', false, null);
	}

	function copiar() {
		editor.document.execCommand('copy', false, null);
	}
	
	function colar() {
		editor.document.execCommand('paste', false, null);
	}

	function desfazer() {
		editor.document.execCommand('undo', false, null);
	}

	function refazer() {
		editor.document.execCommand('redo', false, null);
	}

	function negrito() {
		editor.document.execCommand('bold', false, null);
	}

	function italico() {
		editor.document.execCommand('italic', false, null);
	}

	function sublinhado() {
		editor.document.execCommand('underline', false, null);
	}

	function alinharEsquerda() {
		editor.document.execCommand('justifyleft', false, null);
	}

	function centralizado()	{
		editor.document.execCommand('justifycenter', false, null);
	}

	function alinharDireita() {
		editor.document.execCommand('justifyright', false, null);
	}

	function numeracao() {
		editor.document.execCommand('insertorderedlist', false, null);
	}

	function marcadores() {
		editor.document.execCommand('insertunorderedlist', false, null);
	}

	function fonte(fonte) {
		if(fonte != '')
			editor.document.execCommand('fontname', false, fonte);
	}

	function tamanho(tamanho) {
		if(tamanho != '')
			editor.document.execCommand('fontsize', false, tamanho);
	}

	function abrir(URL,w,h,Nombre) {
	
		var width = w;
		var height = h;
	
		var left = 99;
		var top = 99;
	
		window.open(URL, Nombre+'a', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=yes, fullscreen=no');
	
	}
	
	
	function voi(){
		
	}