// お気に入りに追加→IE／ブックマークに追加→Firefox 

function bookmark(){


if(navigator.userAgent.indexOf("MSIE")>-1){	//Internet Explorer
document.writeln('<!--[if gte IE 7]>');
document.writeln('<div style="position:relative;left:-20px;top:-10px;"><input type="button" style="border:solid 1px #bbccbb;background:#556B2F;font-size:8pt;color:#bbccbb;width:100px;" value="お気に入りに追加"');
document.writeln(' onclick="window.external.AddFavorite(\'http://kofusaisei.com\',\'手作りショップ「古布再生」\')"  onmouseover="this.style.background=\'#758B4F\';this.style.color=\'#000080\'" onmouseout="this.style.background=\'#556B2F\';this.style.color=\'#a9a9a9\'"></div>');
document.writeln('<![endif]-->');

document.writeln('<!--[if lt IE 7]>');
document.writeln('<input type="button" style="border:solid 1px #bbccbb;background:#556B2F;font-size:8pt;color:#bbccbb;width:100px;" value="お気に入りに追加"');
document.writeln(' onclick="window.external.AddFavorite(\'http://kofusaisei.com\',\'手作りショップ「古布再生」\')"  onmouseover="this.style.background=\'#758B4F\';this.style.color=\'#000080\'" onmouseout="this.style.background=\'#556B2F\';this.style.color=\'#a9a9a9\'">');
document.writeln('<![endif]-->');
}

else if(navigator.userAgent.indexOf("Firefox")>-1){	//Firefox
document.writeln('<input type="button" style="border:solid 1px #bbccbb;background:#556B2F;font-size:8pt;color:#bbccbb;width:100px;" value="ブックマークに追加"');
document.writeln(' onclick="window.sidebar.addPanel(\'手作りショップ「古布再生」\',\'http://kofusaisei.com\',\'\')" onmouseover="this.style.background=\'#758B4F\';this.style.color=\'#000080\'" onmouseout="this.style.background=\'#556B2F\';this.style.color=\'#a9a9a9\'">');
}


else if(navigator.userAgent.indexOf("Opera") > -1){	//Opera
document.write('<div style="margin-left:628px;text-align:center;border:solid 1px #bbccbb;background:#556B2F;font-size:8pt;color:#bbccbb;width:103px;">');
document.write('<a href="http://kofusaisei.com" rel="sidebar" title="手作りショップ「古布再生」" onmouseover="this.style.background=\'#758B4F\'" onmouseout="this.style.background=\'#556B2F\'">ブックマークに追加</a></div>');
}



else{		//該当無し
void(0);	//何もしない
}
}