﻿function CreateBookmarkLink(  url, title ) {      
            var agt=navigator.userAgent.toLowerCase(); 
            if (window.sidebar) 
            { // Mozilla Firefox Bookmark
                        //alert("Firefox Bookmark");           
                        window.sidebar.addPanel(document.title, document.location.href,"");      
            } 
            else if ( window.external ) 
            { // IE Favorite    
                        //alert("IE Favorite");         
                        window.external.AddFavorite(document.location.href, document.title); 
            }           
            else if (agt.indexOf("safari") != -1)
            { // Opera Hotlist            
                        alert("Please press Command-D to bookmark in your safari browser.");                 
                        return true; 
            } 
            else
            {
                alert("Please use your browser to bookmark this page.");
            }

}  // function
