// this is the file containing Javascript code for the dipty blog
// created and maintained by dp from PG COnsulting GmbH, contact: dieter.pfenning@pg-consulting.org

// function for adding dipty as a search engine in the browser search field
// should work with ie 8 and ff 3
function addDiptySearch()
{
  if((typeof window.external == "object") &&
    ((typeof window.external.AddSearchProvider == "unknown") ||
    (typeof window.external.AddSearchProvider == "function")))
  {
    window.external.AddSearchProvider("http://de.dipty.com/searches/searchtools.xml");
    window.location.href = "http://de.dipty.com/searches/searchtools?installed=true";
  }
  else
    window.location.href = "http://de.dipty.com/searches/searchtools?installed=false";
 
  return false;
}
 

