
<!--
		//Lƒoƒi[Eƒ‰ƒ“ƒ_ƒ€•À‚×‘Ö‚¦•\Ž¦ƒXƒNƒŠƒvƒg
		//By ƒ^ƒJƒ’Eƒqƒmƒnƒ‰

function RandomAd(x) {


		//f‚ÍŒfÚ‚·‚éL”
		f = 15;
		
		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.funfancy.co.jp/"><img src="/nipponopen/img/sp_ffc.gif" alt="" /></a>';
		Mess[1] = '<a href="http://hottspin.jp/"><img src="/nipponopen/img/sp_hotspin.gif" alt="" /></a>';
		Mess[2] = '<a href="http://ogacho.exblog.jp/"><img src="/nipponopen/img/sp_ogacho.gif" alt="" /></a>';	
		Mess[3] = '<a href="http://web.mac.com/wilsoncycle/Site/Welcome.html"><img src="/nipponopen/img/sp_wilson.gif" alt="" /></a>';
		Mess[4] = '<a href="http://www.gonzo-web.com/"><img src="/nipponopen/img/sp_gonzo.gif" alt="" /></a>';
		Mess[5] = '<a href="http://www.tkcproduction.com/"><img src="/nipponopen/img/sp_tkc.gif" alt="" /></a>';
		Mess[6] = '<a href="http://www.groovyint.com/"><img src="/nipponopen/img/sp_groovy.gif" alt="" /></a>';	
		Mess[7] = '<a href="http://www.lovebikes.net/"><img src="/nipponopen/img/sp_love.gif" alt="" /></a>';
		Mess[8] = '<a href="http://www.peakco.jp/"><img src="/nipponopen/img/sp_peak.gif" alt="" /></a>';
		Mess[9] = '<a href="http://www.katocycle.com/"><img src="/nipponopen/img/sp_kato.gif" alt="" /></a>';
		Mess[10] = '<a href="http://www.akiworld.co.jp/"><img src="/nipponopen/img/sp_aki.gif" alt="" /></a>';
		Mess[11] = '<a href="http://colt99.com/index2.html"><img src="/nipponopen/img/sp_colt.gif" alt="" /></a>';
		Mess[12] = '<a href="http://www.khsjapan.com/"><img src="/nipponopen/img/sp_khs.gif" alt="" /></a>';
		Mess[13] = '<a href="http://www.ogkhelmet.com/"><img src="/nipponopen/img/sp_ogk.gif" alt="" /></a>';
		Mess[14] = '<a href="http://tmg13.com/"><img src="/nipponopen/img/sp_inzist.gif" alt="" /></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(Mess[Num[i]]);
		document.write("<br />");
	}

}

//-->