// JavaScript Document
/*function addToFavorites(anchor) {
		if (window.external)
			{
			window.external.AddFavorite(anchor.getAttribute("href"), anchor.getAttribute("title"));
			}
}*/

function addToFavorites(anchor) {
	if ( navigator.appName != 'Microsoft Internet Explorer' ){
		window.sidebar.addPanel(anchor.getAttribute("title"),anchor.getAttribute("href"),"");
	} else {
		window.external.AddFavorite(anchor.getAttribute("href"),anchor.getAttribute("title"));
	}
}