/**
* Install Search Plugins in Browsers
* Based on the instructions given in http://developer.mozilla.org/en/docs/Adding_search_engines_from_web_pages
* 
**/

<!-- 

function installSearchEngine() {
 var here = location.protocol + "//" + location.hostname + "/diccionario/";
 if (window.external && ("AddSearchProvider" in window.external)) {
   // Firefox 2 and IE 7, OpenSearch
   window.external.AddSearchProvider(here +"poraqui.xml");
 } else if (window.sidebar && ("addSearchEngine" in window.sidebar)) {
   // Firefox <= 1.5, Sherlock
   window.sidebar.addSearchEngine(here +"poraqui.src",
                                  here +"poraqui.png",
                                  "Poraqui.net", "");
 } else {
   // No search engine support (IE 6, Opera, etc).
   alert("Lo siento, tu navegador no ejecuta esta opción");
 }
}	

var home_tooltip_title = "Incluye el glosario de Poraqui.net entre tus buscadores";
var home_text_link = "Poner en el navegador";


	  document.write("<a href=\"javascript:installSearchEngine();\" title=\"" + home_tooltip_title + "\" >" + home_text_link + "</a>");

// -->