var arrUrl = new Array(
"http://link01.happy-horizon.com/search/index.php"
)

var doit=true;
function Show()
{if (doit) 
	nTemp = Math.round(Math.random()*(arrUrl.length-1));
	window.open (arrUrl[nTemp],"","");
}
