﻿function add_bookmark(code,domain,href,title){
	if (code == 9){
		if(navigator.userAgent.indexOf("MSIE") > -1){ //Internet Explorer
			window.external.AddFavorite(href,title);
		} else if(navigator.userAgent.indexOf("Firefox") > -1){ //Firefox
			window.sidebar.addPanel(title,href,'');
		} else if(navigator.userAgent.indexOf("Opera") > -1){ //Opera
//			alert('お使いのブラウザは『お気に入り登録』に対応しておりません')
		} else { //該当なし
			alert('お使いのブラウザは『お気に入り登録』に対応しておりません')
			/*window.external.AddFavorite(href,title);*/
		}
		document.forms[0].target = "_self";
	} else {
		document.forms[0].target = "_blank";
	}

	document.forms[0].bookmarkCode.value = code;
	document.forms[0].document_title.value = title;
	document.forms[0].location_href.value = href;
	document.forms[0].action = domain+"/bookmarks/index";
	document.forms[0].method = "post";
	document.forms[0].submit();
}

