/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: MB Web Design | http://www.mbwebdesign.co.uk */
function bookmark() {
  if (window.sidebar) {
    window.sidebar.addPanel(window.document.title, window.document.location,"");
  } else if( document.all ) {
    window.external.AddFavorite(window.document.location, window.document.title);
  } else if( window.opera && window.print ) {
                var elem = document.createElement('a');
                elem.setAttribute('href',url);
                elem.setAttribute('title',title);
                elem.setAttribute('rel','sidebar');
                elem.click();
                return false;
  }
}
