// JavaScript browser utils by Thomas Hodanek

// function to add a bookmark
// call: <a href="javascript:bookmarkSite('Landwirt', 'http://www.landwirt.com')">
function bookmarkSite(title, url) {
  if (document.all)
    window.external.AddFavorite(url, title);
  else if (window.sidebar)
    window.sidebar.addPanel(title, url, "")
}

// function to set current page as start page
// call: <a href="" onClick="setStartPage(this,'http://www.landwirt.com')">
function setStartPage(obj,url) {
  if (window.external) {
    obj.style.behavior='url(#default#homepage)';
    obj.setHomePage(url); 
  }
}
