// ゲームページ用バナー
var m_nGameNotice = 1;
var aszGameNotice = new Array(
	// ココアのおもちゃばこ
	"<a href=http://pokedebi.com/game/cocoatoy/ target=_blank><img src=../grp/top/notice-toybox.gif width=410 height=70 border=no alt=ココアのおもちゃばこ></a>",
	""
);

// ココフラッシュページ用バナー
var m_nCocoflashNotice = 3;
var aszCocoflashNotice = new Array(
	// ココアのケーキケーキケーキ
	"<a href=http://pokedebi.com/game/cocopetit/cake.html target=_blank><img src=../grp/top/notice-cake.gif width=410 height=70 border=no alt=ココアのケーキケーキケーキ></a>",
	// おんせんココア＋
	"<a href=http://www.shockwave.co.jp/games/puzzle/actionpuzzle/spacocoa/play.html target=_blank><img src=../grp/top/notice-onsen.gif width=410 height=70 border=no alt=おんせんココア＋></a>",
	// ココアの海づり
	"<a href=http://pokedebi.com/game/cocopetit/seafishing.html target=_blank><img src=../grp/top/notice-seafish.gif width=370 height=64 border=no alt=ココアの海づり></a>",
	""
);



////////////////////////////////////////////////////////////////////////////////////////

function putGameNotice()
{
	var nRnd = Math.floor( Math.random() * m_nGameNotice );
	
	document.write( aszGameNotice[nRnd] );
}


function putCocoflashNotice()
{
	var nRnd = Math.floor( Math.random() * m_nCocoflashNotice );
	
	document.write( aszCocoflashNotice[nRnd] );
}
