    function bookmarksite(title, url)
    {
        if( window.opera && window.print ) // For Opera.
        {
            var mbm = document.createElement('a');
            mbm.setAttribute('rel','sidebar');
            mbm.setAttribute('href',url);
            mbm.setAttribute('title',title);
            mbm.click();
        }

        else if( document.all ) window.external.AddFavorite( url, title); // For IE.

        // else if (window.sidebar) window.sidebar.addPanel(title, url,""); // For Netscape and Firefox Browser, it opens in side bar.

        else alert("Your browser is not supporting this function. Please press 'Ctrl + D' to Bookmark this website!");
    }





