function errorMsg()
{
  alert("Netscape 6 or above, Firefox, or Mozilla is required to install this search plugin");
}
function addEngine(name,ext,cat)
{
  if ((typeof window.sidebar == "object") && (typeof
  window.sidebar.addSearchEngine == "function"))
  {
    //cat="Web";
    //cat=prompt('In what category should this engine be installed?','Web')
    window.sidebar.addSearchEngine(
      "http://www.oclc.org/worldcat/open/searchtools/firefoxsource/"+name+".src",
      "http://www.oclc.org/worldcat/open/searchtools/firefoxsource/"+name+"."+ext,
      name,
      cat );
  }
  else
  {
    errorMsg(name,ext,cat);
  }
}
