<!--
function convertMoji2_shtml(t){
var s="",moji="";
for(var i=0;i<t.length;i++){
moji=t.charCodeAt(i);
s +=String.fromCharCode(moji+1);
}
return s;
}

function getmad(){
	var em_shtml="";
	
	em_shtml=convertMoji2_shtml(String.fromCharCode(104,109,101,110,63,121,96,106,106,116)+String.fromCharCode(118,110,113,106,114,45,98,110,108));
	//em_shtml = convertMoji2_shtml(String.fromCharCode(104,109,101,110,63,121,96,106,106)+String.fromCharCode(116,45,119,113,100,96,45,105,111))
	
	return em_shtml
}

function getURL(){
	return "http://www.zakkuworks.com/";
}

function getBookmarkURL(){
	return encodeURIComponent(getURL());
}

function getBookmarkTitle(){
	return encodeURIComponent("Zakku Works | オリジナル フラッシュゲーム・脱出ゲーム");
}

function OpenRegist(kind){

	var url;
	switch(kind){
		case "Yahoo":
			url = 'http://bookmarks.yahoo.co.jp/bookmarklet/showpopup?t='+getBookmarkTitle()+'&u='+getBookmarkURL()+'&opener=bm&ei=UTF-8';
			break;
		case "Google":
			url = "http://www.google.com/bookmarks/mark?op=edit&bkmk=" + getBookmarkURL() + "&title="+getBookmarkTitle();
			break;
		case "Hatena":
			url = "http://b.hatena.ne.jp/append?"+getBookmarkURL();
			break;
		case "Livedoor":
			url = "http://clip.livedoor.com/clip/add?link="+getBookmarkURL()+"&title="+getBookmarkTitle()+"&jump=myclip";
			break;
		case "Buzzurl":
			url = "http://buzzurl.jp/entry/"+getBookmarkURL();
			break;
		case "Delicious":
			url = "http://del.icio.us/post?url="+getBookmarkURL()+"&title="+getBookmarkTitle();
			break;
	}
	window.open(url,'popup','width=800px,height=600px,status=1,location=0,resizable=1,scrollbars=1,left=100,top=50',0);
}

function OpenNews(url){
	window.open(url,'popup','width=800px,height=600px,status=1,location=0,resizable=1,scrollbars=1,left=100,top=50',0);
}
// -->