 function bookmarksite(title){
 var theurl = location.href;
 if (window.sidebar) // firefox
     window.sidebar.addPanel(title, theurl, "");
     //alert('Dear Firefox user, please press CTRL+D to Bookmark this page!');
 else if(window.opera && window.print){ // opera
     var elem = document.createElement('a');
     elem.setAttribute('href',theurl);
     elem.setAttribute('title',title);
     elem.setAttribute('rel','sidebar');
     elem.click();
 } 
 else if(document.all)// ie
     window.external.AddFavorite(theurl, title);
 }