function CreateBookmarkLink()
 {

 title = "Configur8or, the online Product Configurator for any business.";

 url = "http://www.configur8or.com";

    if (window.sidebar)
      { // Mozilla Firefox Bookmark
          window.sidebar.addPanel(title, url,"");
      }
    else if( window.external )
      { // IE Favorite
          window.external.AddFavorite( url, title);
      }
    else
      {
            alert("This feature is not supported in your web browser. Please use your browsers built-in bookmark feature.");
    }
 }

