 function CreateBookmarkLink() {
    title = "PORNDUMPER.net - for your daily FREE porn"; 
    url = "http://www.porndumper.net/";
    
    isIE = navigator.userAgent.toUpperCase().indexOf('MSIE') >= 0;
    isFF = navigator.userAgent.toUpperCase().indexOf('FIREFOX') >= 0;
    
    if (isFF) {
        window.sidebar.addPanel(title, url,"");
    } else if (isIE) {
        window.external.AddFavorite( url, title); 
    } else {
        return true;
    }
 }