function RandomAd(x) {
f = 22;

var Num = new Array(f - 1);
var Chk = new Array(f - 1);
var Mess = new Array(f - 1);

//***ɍL\HTML̔z쐬
Mess[0] = '<a href="http://www.douglasjapan.jp/products/dog/81031/index.html"><img src="http://www.douglasjapan.jp/products/dog/81031/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[1] = '<a href="http://www.douglasjapan.jp/products/dog/81033/index.html"><img src="http://www.douglasjapan.jp/products/dog/81033/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[2] = '<a href="http://www.douglasjapan.jp/products/dog/81075/index.html"><img src="http://www.douglasjapan.jp/products/dog/81075/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[3] = '<a href="http://www.douglasjapan.jp/products/dog/81077/index.html"><img src="http://www.douglasjapan.jp/products/dog/81077/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[4] = '<a href="http://www.douglasjapan.jp/products/raddog/81812/index.html"><img src="http://www.douglasjapan.jp/products/raddog/81812/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[5] = '<a href="http://www.douglasjapan.jp/products/raddog/81814/index.html"><img src="http://www.douglasjapan.jp/products/raddog/81814/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[6] = '<a href="http://www.douglasjapan.jp/products/cat/82045/index.html"><img src="http://www.douglasjapan.jp/products/cat/82045/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[7] = '<a href="http://www.douglasjapan.jp/products/horse/83004/index.html"><img src="http://www.douglasjapan.jp/products/horse/83004/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[8] = '<a href="http://www.douglasjapan.jp/products/horse/83134/index.html"><img src="http://www.douglasjapan.jp/products/horse/83134/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[9] = '<a href="http://www.douglasjapan.jp/products/bear/85001/index.html"><img src="http://www.douglasjapan.jp/products/bear/85001/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[10] = '<a href="http://www.douglasjapan.jp/products/bear/85002/index.html"><img src="http://www.douglasjapan.jp/products/bear/85002/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[11] = '<a href="http://www.douglasjapan.jp/products/zoo/86021/index.html"><img src="http://www.douglasjapan.jp/products/zoo/86021/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[12] = '<a href="http://www.douglasjapan.jp/products/zoo/86022/index.html"><img src="http://www.douglasjapan.jp/products/zoo/86022/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[13] = '<a href="http://www.douglasjapan.jp/products/zoo/86144/index.html"><img src="http://www.douglasjapan.jp/products/zoo/86144/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[14] = '<a href="http://www.douglasjapan.jp/products/fuzzle/87126/index.html"><img src="http://www.douglasjapan.jp/products/fuzzle/87126/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[15] = '<a href="http://www.douglasjapan.jp/products/fuzzle/87120/index.html"><img src="http://www.douglasjapan.jp/products/fuzzle/87120/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[16] = '<a href="http://www.douglasjapan.jp/products/farm/87167/index.html"><img src="http://www.douglasjapan.jp/products/farm/87167/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[17] = '<a href="http://www.douglasjapan.jp/products/dino/88052/index.html"><img src="http://www.douglasjapan.jp/products/dino/88052/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[18] = '<a href="http://www.douglasjapan.jp/products/baby/89210/index.html"><img src="http://www.douglasjapan.jp/products/baby/89210/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[19] = '<a href="http://www.douglasjapan.jp/products/tote/89375/index.html"><img src="http://www.douglasjapan.jp/products/tote/89375/s.gif" alt="" width="70" height="70" border="0" /></a>';
Mess[20] = '<a href="http://www.douglasjapan.jp/products/unicorn/84194/index.html"><img src="http://www.douglasjapan.jp/products/unicorn/84194/s.jpg" alt="" width="70" height="70" border="0" /></a>';
Mess[21] = '<a href="http://www.douglasjapan.jp/products/baby/89061/index.html"><img src="http://www.douglasjapan.jp/products/baby/89061/s.jpg" alt="" width="70" height="70" border="0" /></a>';

//***
for (i=0;i<f;i++) //
{
	Num[i] = Math.floor(Math.random()*f);
	if (Chk[Num[i]]  == 1){
		while(Chk[Num[i]] == 1){
		Num[i] = Math.floor(Math.random()*f);
			}
			Chk[Num[i]] = 1;
		}
		else {
			Chk[Num[i]] = 1;
		}
	}
	

	for (i=0;i<x;i++) //
	{
		document.write(Mess[Num[i]]);
	}
}
