function addBookmark()
{
    if(document.all && !window.opera)
    {
        window.external.AddFavorite(location.href, document.title);
        return false;
    }
    else
    {
        alert("You need to press CTRL + D to bookmark our site."); 
        this.title = document.title;
    }
}
