function CreateBookmarkLink() { 
    title = "Netstart - uw complete internetgids";   
    url = "http://www.netstart.be";
    bmimg = new Image();
    bmimg.src = "http://www.netstart.be/images/bookmark.png"; 
    
    if (window.sidebar) { 
        // Mozilla Firefox Bookmark        
        window.sidebar.addPanel(title, url,"");    
    } else if( window.external ) { 
        // IE Favorite        
        window.external.AddFavorite( url, title); }    
    else if(window.opera && window.print) { 
        // Opera Hotlist        
        return true; 
    } 
}