<!-- Begin
 var urlAddress = document.location.href;
 var pageName = document.title;
function BookmarkIt()
{
if (window.sidebar) // firefox
	alert("Add this page to your Bookmarks by pressing the 'Ctrl' key and the 'd' key at the same time. Mac users, press Command instead of 'Ctrl'.");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',urlAddress);
	elem.setAttribute('title',pageName);
	elem.setAttribute('rel','sidebar');
	elem.click();
}
else if (navigator.userAgent.indexOf('Safari') != -1){ // safari
	alert("Add this page to your Bookmarks by pressing Command and the 'd' key at the same time. PC users, press 'Ctrl' instead of 'Command'.");
}
else if(document.all)// ie
	window.external.AddFavorite(urlAddress,pageName);
}
//  End -->