/* =====================================
 * ブックマーク
 * Version	1.0.1
 * Update	2009-12-16
===================================== */

var bookmark = function() {
	var title = document.title;
	var url = location.href;
	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;
	}
}

var mailto = function() {
	var mail = "mailto:?subject=" + document.title + "&body=" + location.href;
	var a = document.getElementById("mailto");
	a.setAttribute("href", mail);
}

if(window.addEventListener) {
	window.addEventListener("load", mailto, false);
} else if (window.attachEvent) {
	window.attachEvent("onload", mailto);
}

