mySettings = {	
	resizeHandle: true,
	markupSet:[
	{name:'Citar', dropMenu: [
			{name:'Citar Secreto',  beforeInsert:function(h){ markit_sec(h)} },
			{name:'Citar Comentario',  beforeInsert:function(h){ markit_com(h)} }
		]},
	{separator:'   '},
	{name:'Sonrisa', replaceWith:' =) '},
	{name:'Sonrisa Grande', replaceWith:' :D '},
	{name:'Leng&uuml;ita', replaceWith:' :P '},
	{name:'Asombro', replaceWith:' :O '},
	{name:'Gui&ntilde;o', replaceWith:' ;) '},
	{name:'Ruborizado', replaceWith:' :$ '},
	{name:'Triste', replaceWith:' =( '},
	{name:'Anteojos', replaceWith:' 8) '}
	]
}

function markit_sec(h){
	var msg = prompt("Ingrese el ID del Secreto");
	if(msg != null){
		h.replaceWith = ' @sec=' + msg + ' ';
		h.openWith = '';
		h.closeWith = '';
	}else{
		h.replaceWith = '';
		h.openWith = '';
		h.closeWith = '';
	}
}
function markit_com(h){
	var msg = prompt("Ingrese el ID del Comentario");
	if(msg != null){
		h.replaceWith =  ' @com=' + msg + ' ';
		h.openWith = '';
		h.closeWith = '';
	}else{
		h.replaceWith = '';
		h.openWith = '';
		h.closeWith = '';
	}
}


