Usuario:Comae/Prueba3
//
/*********** Botonera ***********/ function loadButtons() { var btSearch = "<br /><div>"; btSearch += buttonCode("Wikipedia, a través de Google", "G", "http://www.google.com/search?q=", "&btnG=B%FAsqueda+en+Google.com&domains=http://es.wikipedia.org&sitesearch=http://es.wikipedia.org&ie=iso-8859-1&oe=iso-8859-1"); btSearch += buttonCode("Wikipedia en inglés", "en", "http://en.wikipedia.org/wiki/", ""); btSearch += buttonCode("Enciclopedia Libre", "EL", "http://enciclopedia.us.es/index.php/", ""); btSearch += buttonCode("Wikcionario", "Wkc", "http://es.wiktionary.org/wiki/", ""); btSearch += buttonCode("Diccionario de la Real Academia Española", "DRAE", "http://buscon.rae.es/draeI/SrvltGUIBusUsual?TIPO_HTML=2&TIPO_BUS=2&LEMA=", ""); btSearch += "<br />"; btSearch += buttonCode("Websters dictionary en:. The Rosetta Edition.", "Webster", "http://www.websters-online-dictionary.org/definition/english/",".html"); btSearch += buttonCode("Diccionario American Heritage (español-inglés inglés-español)", "AH", "http://ar.education.yahoo.com/search/ar?p=", ""); var boxSearch = document.getElementById("searchform"); if (boxSearch) boxSearch.innerHTML += btSearch+"</div>"; var botones='<style type="text/css">\n .botón {background-color:white; border:1px solid #aaaaaa; width:18px; height:16px; float:right; font-size:80%}\n .botónbusca {border:1px solid #4477aa; text-decoration:none; line-height:1.8; padding:1px}\n</style> <div class="botonera" style="position:fixed; right:0px; z-index:3; font-size:13px; font-weight:900; text-align:center; width:20px">'; botones+=creaBotón("Mapa de la ayuda", "?", "http://es.wikipedia.org/wiki/Wikipedia:Mapa", ""); botones+=creaBotón("Zona de pruebas", "#", "http://es.wikipedia.org/wiki/Wikipedia:Zona de pruebas", ""); botones+=creaBotón("Cartelera de acontecimientos", "A", "http://es.wikipedia.org/wiki/Wikipedia:Cartelera de acontecimientos", ""); botones+=creaBotón("WikiProyectos", "WPr", "http://es.wikipedia.org/wiki/Wikipedia:WikiProyecto", ""); if (document.getElementById("editform")!=null) { //Estos botones no se muestran si no se está editando: botones+=creaBotón("WEI", "<code style=\"background:yellow\">:\)</code>", "javascript:ponWEI()", "background:yellow"); botones+=creaBotón("Alerta de copyright", "(C)", "javascript:copyvio()", "font-size:80%; padding:1px; line-height:1.7"); botones+=creaBotón("Redirección", "[R]", "javascript:ponRedirect()", "font-size:80%; padding:1px; line-height:1.7"); botones+=creaBotón("Respuestas rápidas", "Re:", "http://es.wikipedia.org/wiki/Wikipedia:Respuestas rápidas", "font-size:80%; padding:1px; line-height:1.7"); } botones+='</div>'; var toolbox = document.getElementById("contentTop"); toolbox.innerHTML = botones; } function goSearch(inicio, fin) { var text = document.getElementById("searchInput"); window.open(inicio + escape(text.value) + fin); } function buttonCode(titulo, texto, inicio, fin) { return ' <a class="botónbusca" href="javascript:goSearch(\''+inicio+'\', \''+fin+'\')" title="'+titulo+'">'+texto+'</a>'; } function creaBotón(title, texto, destino, estilo) { return '<a href="'+destino+'" style="text-decoration:none"><div class="botón" style="'+estilo+'" title="'+title+'">'+texto+'</div></a>'; } function copyvio() { Qr=''; if(!Qr){void(Qr=prompt('Motivo de la alerta:',''));} if(Qr)insertTags('{'+'{copyright}'+'}\'\'\'Motivo:\'\'\' '+Qr+'. {'+'{subst:CURRENTDAYNAME}'+'}, {'+'{subst:CURRENTDAY}'+'} de {'+'{subst:CURRENTMONTHNAME}'+'} de {'+'{subst:CURRENTYEAR}'+'}, {'+'{subst:CURRENTTIME}'+'}','',''); } function ponWEI() {insertTags('<code style="background:yellow">','</code>','');} function ponRedirect() {insertTags('#REDIRECT [[',']]','');} window.onload = loadButtons; /*********** Fin botonera ************///