// add to favorite to IE and Firefox

// HTMLに下行タグを埋め込み使用
// ボタン：<input type="button" value="お気に入りに登録" onClick="addBookmark(document.title, location.href);" />
// テキスト：<a href="#" onClick="addBookmark(document.title, location.href)">お気入りに登録</a>
// 参照元：http://www.generalsurf.com/memorandum/post-4.html

function addBookmark(title,url) { 
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	} else if( document.all ) { 
		window.external.AddFavorite( url, title); 
	} else if( window.opera && window.print ) { 
		return true; 
	} 
} 
