function addBookmark (title, url) {
	if (window.sidebar)
		window.sidebar.addPanel(title, url,""); 
	else if (document.all)
		window.external.AddFavorite( url, title);
	else if (window.opera && window.print)
	{
		var mbm = document.createElement('a');
    mbm.setAttribute('rel','sidebar');
    mbm.setAttribute('href',url);
    mbm.setAttribute('title',title);
    mbm.click();
	}
}


/*		alert ("Sorry. This browser does not support adding of bookmarks from our code.\n"
		  + "Please add this site using the options in your browser menu.");
		return true;
*/
