/**
* From http://labnol.blogspot.com/2006/01/add-to-favorites-ie-bookmark-firefox.html
* FRAME-91
**/
function bookmarkThisPage(url, title) { 
	//if no title is specified don't bookmark
	if (title == null) {
		return;
	}
	if ( navigator.appName.indexOf('Netscape') != -1 && window.sidebar) { 
		// Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if ( navigator.appName.indexOf('Microsoft') != -1 && window.external ) { 
		// IE Favorite
		window.external.AddFavorite( url, title); 
	} else if (window.opera && window.print) { 
		// Opera Hotlist
		return true; 
	}	
}