function addToFavorites(options)
{
	if(window.sidebar) 					  window.sidebar.addPanel(options.title,options.url,'');  // Mozilla Firefox Bookmark
	else if(window.external) 			  window.external.AddFavorite(options.url,options.title); // IE Favorite
	else if(window.opera && window.print) return true; 							  				  // Opera Hotlist
}