 function CreateBookmarkLink() 
 {
        var pagetitle = 'Account Detective';
        var pageurl = 'http://accountdetective.co.uk/';
        
	if (window.sidebar) 
        { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(pagetitle, pageurl,"");
	} 
        else 
        if( window.external ) 
        { // IE Favorite
		window.external.AddFavorite( pageurl, pagetitle); 
        }
	else 
        if(window.opera && window.print) 
        { // Opera Hotlist
	  return true; 
        }
 }
