
// Add Favorite

var fv_ptc = window.location.protocol;
if (fv_ptc != "http:" && fv_ptc != "https:") {	fv_ptc = "http:";	}

document.write(' ');   


if(navigator.userAgent.indexOf("MSIE") > -1){ //Internet Explorer   
document.write('<!-'+'-[if IE]>');   
document.write('<a href="#"');   
document.write(' onclick="window.external.AddFavorite(\''+document.URL+'\',\''+document.title+'\');return false;">');   
document.write('<img src="'+fv_ptc+'//'+location.hostname+'/images/btn_favorite.gif" width="68" height="16" style="vertical-align: middle;" />');   
document.write('</a>');   
document.write('<![endif]-'+'->');   
}   
  
else if(navigator.userAgent.indexOf("Firefox") > -1){ //Firefox   
document.write('<a href="#"');   
document.write(' onclick="window.sidebar.addPanel(\''+document.title+'\',\''+document.URL+'\',\'\');return false;">');   
document.write('<img src="'+fv_ptc+'//'+location.hostname+'/images/btn_favorite.gif" width="68" height="16" style="vertical-align: middle;"');   
document.write('</a>');   
}   
  
else if(navigator.userAgent.indexOf("Opera") > -1){ //Opera   
document.write('<a href="'+document.URL+'" rel="sidebar" title="'+document.title+'"><img src="'+fv_ptc+'//'+location.hostname+'/images/btn_favorite.gif" width="68" height="16" style="vertical-align: middle;" /></a>');   
}   
  
else { //該当なし   
//document.write('<a href="#" onclick="alert(\'ご不便をお掛けいたしまして申し訳ございません。お気に入り登録の機能はご利用中のブラウザには対応しておりません。\');return false;"><img src="'+fv_ptc+'//'+location.hostname+'/images/btn_favorite.gif" width="68" height="16" style="vertical-align: middle;" /></a>');   
}   

