// JavaScript Document
//設定ここから
　var image = ( "http://www.kasai-hikaku.jp/share/images/fav.gif");
  var i_width = ("101px") ;/* お気に入りボタン幅 */
  var i_height = ("16px") ;/* お気に入りボタン高さ */

//　設定ここまで
  url = location.href; /* 現在のページのURL */
  title = document.title; /* 現在のページのタイトル */
  var webtitle = document.title; 

   //　IE
  function book_mark() {
    if(document.all)window.external.addFavorite(url,title);
  }

  //　Netscape
  function addSideBar() { /* Firefox, Netscape用サイドバーに追加 */
  window.sidebar.addPanel(title,url,"");
  }

	
	if(navigator.userAgent.indexOf("MSIE") > -1){ //Internet Explorer
	document.write('<!-'+'-[if IE]>');
	document.write('<a href="JavaScript:book_mark();"><img src='+image+' width='+i_width+' height='+i_height+' border="0" alt="お気に入りに追加"></a>');
	document.write('<![endif]-'+'->');
	}
	
	else if(navigator.userAgent.indexOf("Firefox") > -1){ //Firefox
	document.write('<a href="javascript:addSideBar()"><img src='+image+' width='+i_width+' height='+i_height+' border="0" alt="お気に入りに追加"></a>');
	}
	
	else if(navigator.userAgent.indexOf("Opera") > -1){ //Opera
	document.write('<a href="" rel="sidebar" title='+webtitle+'>');
	document.write('<img src='+image+' width='+i_width+' height='+i_height+' border="0" alt="お気に入りに追加">');
	document.write('</a>');
	}
	
	else { //該当なし
	document.write('<img src='+image+' width='+i_width+' height='+i_height+' border="0" alt="お気に入りに追加">');
	}

