//sample01ランダムバナー
function sample01(flag){

	//画像
	//リンク先はルートから見たファイル名を指定
	//外部リンクの場合は<a>タグに「target="_blank"」を追加
	//バナーの数だけimgTag[*]から;までを追加

	var imgTag=new Array();
	imgTag[0]='<a href="https://www.47club.jp/webshop/main?cid=29a" target="_blank" class="font12"><img src="http://www.nara-np.co.jp/img/47club_banner120x60_03.gif" border="0" width="120" height="60" alt="47CLUB（よんななくらぶ）"></a>';
imgTag[1]='<a href="http://www.47club.jp/webshop/html/top/special/present_cara.jsp?cid=29a" target="_blank" class="font12"><img src="http://www.nara-np.co.jp/img/47club_original_120-60.gif" border="0" width="120" height="60" alt="47CLUB　キャラクターグッズプレゼント"></a>';
imgTag[2]='<a href="http://www.47club.jp/webshop/main/actionNameTxt/ctgry/cmdtyFlagTxt/sr/ctc/free?cid=29a" target="_blank" class="font12"><img src="http://www.nara-np.co.jp/img/47club_muryo200-200.gif" border="0" width="200" height="200" alt="47CLUB　送料無料商品増量キャンペーン"></a>';

	//0〜(配列の数-1)の乱数を生成
	rand=Math.floor(Math.random() * imgTag.length);

	document.write(imgTag[rand]);
}