function yahoo_win(){ window.open('http://bookmarks.yahoo.co.jp/bookmarklet/showpopup?t='+encodeURIComponent(document.title)+'&u='+encodeURIComponent(window.location.href)+'&opener=bm&ei=UTF-8','popup','width=550px,height=480px,status=1,location=0,resizable=1,scrollbars=0,left=100,top=50',0);
}

function img_change(){
myImageCnt = 4;                           // 画像の数
myImage = new Array(                      // 画像ファイル名の設定
 "http://usagikunchi.jp/images/header/usagi.jpg", // うさぎ君の画像
 "http://usagikunchi.jp/images/header/cream.jpg",  // クリームの画像
 "http://usagikunchi.jp/images/header/kirina.jpg",  // キリーナの画像
 "http://usagikunchi.jp/images/header/kamebou.jpg" // カメ坊の画像
);

myRnd = Math.floor(Math.random()*myImageCnt);  // 0～(myImageCnt-1)の乱数を求める
str = "<img src='"+myImage[myRnd]+"' border='0' >";
return(str);
}
