<!--

function mrandom(max)
{
	var n = max * Math.random()
	n = Math.ceil(n);
	return ( n );
}

function omikuji()
{
	document.write ( "<a href='http://www.pokemon-search.com/'>");
	var x = mrandom( 12 );

	if ( x == 1 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/kira.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 2 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/harukacci2.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 3 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/pikapi.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 4 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/mio.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 5 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/hino.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 6 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/garyu.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 7 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/iria.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 8 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/dust.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 9 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/denryu.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 10 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/nyaaya.gif width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 11 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/fukunyan.jpg width=200 height=40 border=0 alt=PokemonSearch>");
	}
	if ( x == 12 )
	{
		document.write ( "<img src=http://www.pokemon-search.com/image/banner/harukacci.jpg width=200 height=40 border=0 alt=PokemonSearch>");
	}
}
	document.write ( "</a>");
	omikuji();
// -->