<!--
		//•À‚×‘Ö‚¦•\Ž¦ƒXƒNƒŠƒvƒg

function RandomMovies4(x) {


		//f‚ÍŒfÚ‚·‚éL”
		f =3;

		
		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://aa.com" target=_blank onclick="window.open\(\'http://dd.com\'\)">testtest</A>';
Mess[1] = '<A href="http://bb.com" target=_blank onclick="window.open\(\'http://dd.com\'\)">testtest</A>';
Mess[2] = '<A href="http://cc.com" target=_blank onclick="window.open\(\'http://dd.com\'\)">testtest</A>';

	//***ƒ‰ƒ“ƒ_ƒ€‚Å‚O`‚†|‚P‚Ì’l‚ð•À‚×‘Ö‚¦
	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;
		}
	}
	
             //‚g‚s‚l‚kì¬•”•ª

              for (i=0;i<x;i++) //
              {
              document.write('<font size=1>');
              document.write(Mess[Num[i]]);
              document.write(Mess[Num[i+1]]);
              document.write(Mess[Num[i+2]]);
              document.write('</font>');
              }

		}
     
//--> 