// JavaScript Document
//Adding a bookmark to the page the visitor is visiting
<!-- //Hide script from older browsers 
// script by http://www.hypergurl.com 

var urlAddress = self.location.href; 
var pageName = document.title; 
		
function addFavorite() { 
	if (window.sidebar){
		window.sidebar.addPanel(pageName, urlAddress, "", "");
	}
	else if (window.external) { // IE Bookmark
		window.external.AddFavorite(urlAddress,pageName); 
	}
	else {
		alert('Press CTRL and D to add a bookmark');
	}
} // -->