<!--
		//広告バナー・ランダム並べ替え表示スクリプト

function RandomAd(x) {


		//fは掲載する広告数
		f = 14;

		
		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.jo-kyoushi.com/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner01.gif" width="150" height="30" border="0"></A>';
		Mess[1] = '<A href="http://www.u-shirousagi.com/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner68.gif" width="150" height="30" border="0"></A>';
		Mess[2] = '<A href="http://www.1919ikebukuro.com/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner10.gif" width="150" height="30" border="0"></A>';
		Mess[3] = '<A href="http://www.milkpai.com/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner33.gif" width="150" height="30" border="0"></A>';
		Mess[4] = '<A href="http://www.sm-paradox.com/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner36.gif" width="150" height="30" border="0"></A>';
		Mess[5] = '<A href="http://aromaesthetique.com/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner38.gif" width="150" height="30" border="0"></A>';
		Mess[6] = '<A href="http://www.yuri-sono.com/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner70.gif" width="150" height="30" border="0"></A>';
		Mess[7] = '<A href="http://www.clubpassion1.com/Blue/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner54.gif" width="150" height="30" border="0"></A>';
		Mess[8] = '<A href="http://www.aijyo.net/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner59.gif" width="150" height="30" border="0"></A>';
		Mess[9] = '<A href="http://www.opai.jp/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner67.gif" width="150" height="30" border="0"></A>';
		Mess[10] = '<A href="http://tiara-s.jp/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner62.gif" width="150" height="30" border="0"></A>';
		Mess[11] = '<A href="http://g-feel.jp/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner64.gif" width="150" height="30" border="0"></A>';
		Mess[12] = '<A href="http://www.gen-g.jp/puyo2/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner65.gif" width="150" height="30" border="0"></A>';
		Mess[13] = '<A href="http://www.love-dress.net/" target="_blank"><IMG src="http://oppaiseijinx.com/left/sidebanner66.gif" width="150" height="30" 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;
		}
	}
	
	//ＨＴＭＬ作成部分
	document.write('<div align="center"><font size="-1">');
		
	for (i=0;i<x;i++) //
	{
		document.write(Mess[Num[i]]);
                document.write('<IMG src="http://oppaiseijinx.com/left/blackbar.gif" border="0">');

	}
	
	document.write('</div></font>');

}

//-->