Nota: Después de guardar, debes refrescar la caché de tu navegador para ver los cambios. Internet Explorer: mantén presionada Ctrl mientras pulsas Actualizar. Firefox: mientras presionas Mayús pulsas el botón Actualizar, (o presiona Ctrl-Shift-R). Los usuarios de Google Chrome y Safari pueden simplemente pulsar el botón Recargar. Para más detalles e instrucciones acerca de otros exploradores, véase Ayuda:Cómo limpiar la caché.

//<pre><nowiki>
/********* Botonera diacrítica ********/

//document.write('<script type="text/javascript" src="/w/index.php?title=Usuario:Nethac_DIU/database.js&action=raw&ctype=text/javascript&dontcountme=s"></script>');

//Arranque
var keynum

var tildes=""
for(a=0;a<12;a++) {
tildes+="<input type=button title=\'" + u[a][0].substr(53) + "\' class=sq value=\'" + u[a][0].substr(52,1) + "\' onkeypress=\'tecla(event, " + a + ")\'>"
}

tildes+="<input type=text class=aviso id=aviso readonly='readonly' size=50 value=\' \'>"

// portapapeles flotante
var portapapeleo = "<div id=Portaps name=Portaps class=portaps>"
for (a=1;a<5;a++) {
portapapeleo += "<input type=text id=C"+a+" class=ah size=29><br><input type=button id=c"+a+"a1 class=ah value='Cortar' onclick='cortar("+a+")'><input type=button id=c"+a+"a2 class=ah value='Copiar' onclick='copiar("+a+")'><input type=button id=c"+a+"a3 class=ah value='Pegar' onclick='pegar("+a+")'>"
if (a<4) {portapapeleo += "<br>"} else {portapapeleo += "</div>"}
}
var imgloc = "<img id=stodo src='http://upload.wikimedia.org/wikipedia/commons/e/ec/Button_aviso.png' width=23 height=22 border=0 onclick='selectodo()'>"

function cortar(p) {
Seleccion=document.forms[0].wpTextbox1.selectedIndex;
document.getElementById("C"+p).value = (document.getElementById("wpTextbox1").value).substring(document.getElementById("wpTextbox1").selectionStart, document.getElementById("wpTextbox1").selectionEnd);
document.getElementById("wpTextbox1").value = (document.getElementById("wpTextbox1").value).substring(0, document.getElementById("wpTextbox1").selectionStart) + (document.getElementById("wpTextbox1").value).substr(document.getElementById("wpTextbox1").selectionEnd+1)
}
function copiar(p) {
Seleccion=document.forms[0].wpTextbox1.selectedIndex;
document.getElementById("C"+p).value = (document.getElementById("wpTextbox1").value).substring(document.getElementById("wpTextbox1").selectionStart, document.getElementById("wpTextbox1").selectionEnd)
}
function pegar(p) {
insertTags(document.getElementById("C"+p).value,'','')
}
function selectodo() {
document.getElementById("wpTextbox1").select();
document.getElementById("wpTextbox1").focus();
}

//¿qué tecla se pulsó? tras pulsar una tilde
function tecla(Evento, w) {
if(window.event) {keynum = Evento.keyCode}    // IE
else if(Evento.which) {keynum = Evento.which} // Netscape/Firefox/Opera
tildp(w)
}
//acentuando
function tildp(w) {
abece = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
if (keynum>96 && keynum<123) {
if (u[w][0].substr(keynum-71,1) != " ") {insertTags(u[w][0].substr(keynum-71,1),'','')}
else {insertTags(abece.substr(keynum-71,1)+u[w][1],'',''); document.getElementById("aviso").value = "Caracter compuesto no encontrado. Se ha usado la tilde combinable"; borrado = setTimeout ("document.getElementById('aviso').value = ''", 5000)}
}
if (keynum>64 && keynum<91) {
if (u[w][0].substr(keynum-65,1) != " ") {insertTags(u[w][0].substr(keynum-65,1),'','')}
else {insertTags(abece.substr(keynum-65,1)+u[w][1],'','')}
}
if (keynum==32) {insertTags(u[w][0].substr(52,1),'','')}
}

function loadMTEU() {
var otro = document.getElementById("editpage-copywarn");
if (otro) {
otro.innerHTML = tildes+imgloc+otro.innerHTML+portapapeleo;
}
if (loadButtons) {loadButtons()};
}

//</nowiki></pre>