// This will check the browser and display a link to add the
// page as a favorite providing that the browser is IE, FF or Opera
// Chrome does not allow this
function Add_A_Favorite_Link(){ 
	if (window.sidebar) {
		window.sidebar.addPanel(document.title, location.href, ""); 
	}
	else if(window.opera && window.print) { 
		var elem = document.createElement('a'); 
		elem.setAttribute('href',location.href); 
		elem.setAttribute('title',document.title); 
		elem.setAttribute('rel','sidebar'); 
		elem.click(); 
	} 
	else if(document.all) {
		window.external.AddFavorite(location.href, document.title);
	}
	else {
		alert("Your browser does not support this function. Please use the browser's own bookmark/favorites feature.");
	}
} 

if (window.external) {
	document.write("<p><a href='javascript:Add_A_Favorite_Link()'><u>Click here</u> to add this page as a favorite.</a>");
}




