 function CreateBookmarkLink() 
 {
 title = document.title;
 url = location.href;
 	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite(location.href, document.title); }
	else if(window.opera && window.print){ // opera
		var elm = document.createElement('a');
		elm.setAttribute('href',url);
		elm.setAttribute('title',title);
		elm.setAttribute('rel','sidebar');
		elm.click();
	}
 }

