function RandomBn3(x) {
f = 1;

var Num = new Array(f - 1);
var Chk = new Array(f - 1);
var Mess = new Array(f - 1);

//***ここに広告表示HTMLの配列作成

Mess[0] = '<a href="http://www.sigyo.net/list/map.html" onClick="javascript:urchinTracker (\'バナー士業者マップ\'); "><img src="http://www.sigyo.net/img/googlemap_bn.gif" width="175" height="108" border="0"></a><a href="https://kiteirisk.biz-houmu.com/" onClick="javascript:urchinTracker (\'バナーリスク管理\'); " target="_blank"><img src="http://www.sigyo.net/common/ban_kiteirisk_s.jpg" alt="リスク管理と企業規程の作成・運用実務" width="175" height="50" ></a><a href="http://www.daiichihoki.co.jp/dh/product/023960.html" onClick="javascript:urchinTracker (\'バナー許認可管理\'); " target="_blank"><img src="http://www.sigyo.net/common/ban_alert2008_s.gif" alt="法令アラート 許認可管理マニュアル2008" width="175" height="50" ></a><a href="http://www.sigyo.net/astolat/special01.html"  onClick="javascript:urchinTracker (\'バナーアストラット\'); "><img src="http://www.sigyo.net/astolat/img/bn_astolat_special_s.gif" alt="起業家のための起業のススメ" width="175" height="50" border="0" /></a>';

/*
Mess[1] = '<a href="http://www.kigyoujitsumu.com/-/logsub00.html" onClick="javascript:urchinTracker (\'バナー企業実務\'); " target="_blank"><img src="http://www.sigyo.net/img/kigyoujitsumu_sc.gif" alt="企業実務サポートクラブ" width="175" height="108" ></a><a href="https://kiteirisk.biz-houmu.com/" onClick="javascript:urchinTracker (\'バナーリスク管理\'); " target="_blank"><img src="http://www.sigyo.net/common/ban_kiteirisk_s.jpg" alt="リスク管理と企業規程の作成・運用実務" width="175" height="50" ></a><a href="http://www.daiichihoki.co.jp/dh/product/023960.html" onClick="javascript:urchinTracker (\'バナー許認可管理\'); " target="_blank"><img src="http://www.sigyo.net/common/ban_alert2008_s.gif" alt="法令アラート 許認可管理マニュアル2008" width="175" height="50" ></a><a href="http://www.sigyo.net/5is/interview.html" target="_blank"><img alt="IPOコンサルタント 沼田功" src="img/bnr_numata.gif" width="175" height="50" /></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('');
		document.write(Mess[Num[i]]);
		document.write("");
	}
document.write('');
}