Event.observe(window, 'load', show_set_home, false);

var homePage = "http://www.gpquicklinks.ca/";

function show_set_home () {
  // filter out anything but ie5 and above
  if (document.all && document.getElementById) {
    // apply the set home page behaviour
    document.all["setHome"].style.behavior = "url(#default#homepage)";

     if (!document.all["setHome"].isHomePage(homePage)) {
       setHome.style.display = "block";
     }
  }
}

function set_home (link) {
  // display the dialog asking to change the home page
  document.all["setHome"].setHomePage(homePage);
  // if the user changes the home page than hide the set home page button
  if (document.all["setHome"].isHomePage(homePage)) {
    setHome.style.display = "none";
  }

   if (window.location != homePage) {
      window.location = homePage;
   }
}

