﻿ 
 //Creates a bookmark to current page
 function BookmarkPage() 
    { 
        //Firefox/Netscape bookmark
        //Page will open in a side panel
        if (window.sidebar) 
         {     
	        //window.sidebar.addPanel(document.title, self.location, '');
	        alert('Please press Ctrl+D to bookmark this page.');
         }
         // IE Favorite 
         else if (window.external) 
         {      
	        window.external.AddFavorite(self.location, document.title); 
	     }
	     // Opera 7.x Hotlist
        else if (window.opera) 
        {           
	        var a = document.createElement("A");
            a.rel = "sidebar";
            a.target = "_search";
            a.title = document.title;
            a.href = self.location;
            a.click();
	    }
	    // If other browser eg: Safari, this functionality is not supported
	    else
	    {
	        alert('Please press ctrl D to bookmark this page.');
	    }	    
    }
    


