function addFavorite(){
if(navigator.userAgent.indexOf("MSIE") > -1){ //Internet Explorer   
      window.external.AddFavorite(location.href, document.title);
  }   
  
  else if(navigator.userAgent.indexOf("Firefox") > -1){ //Firefox   
      window.sidebar.addPanel(document.title, location.href,'');
  }   
  
  else {
	  window.alert("「お気に入りに追加」機能はお使いのブラウザに対応しておりません。\nInternet Explorer、Firefoxのみ対応です。");  
  }
}
