function setmup (s)
{
	var x = document.getElementById("tarea");
	if (s == 'k') x.value = s+x.value.charAt(1);
	else if (s == 'm') x.value = x.value.charAt(0)+s;
}
