 function CreateBookmarkLink() {
    title = "GalleryGalore - A dirty mind is a joy forever!"; 
    url = "http://www.gallerygalore.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;
    }
 }
 if (window.external) {
  document.write('<a href = "javascript:CreateBookmarkLink()");">Bookmark!</a>'); 
 }
 else if (window.sidebar) {
  document.write('<a href = "javascript:CreateBookmarkLink()");">Bookmark!</a>'); 
 }
 else if (window.opera && window.print) {
  document.write('<a href = "javascript:CreateBookmarkLink()");">Bookmark!</a>');
 } 
