// Copyright (C) 2000 IBRAIN. All Rights Reserved. 
// 各ページの記載記事、写真の無断転載を禁じます。 

/* メニューレイヤー生成 */
function MakeRecomLayer(inMaxIdNo)
{
	var theHtml = '';
	var theId = '';
	var theTmp = new Array();
	var theRnd = 0;
	var m = 0;
	var n = 0;
	var banner = "'/banner_log/BANNER'";
	var target = '';

	// 乱数発生
	m = 0;
	n = inMaxIdNo + 1;
	theRnd = Math.floor((m - n + 1) * Math.random() + n);
	if(theRnd <= m){theRnd = 1;}
	if(theRnd >= n){theRnd = inMaxIdNo}
	theId = IdList[theRnd];

	if(theId == 'sengu'){target = '_blank';}

	theTmp = acMsg[theId].split(",");
	theHtml += '<DIV ID="recom">';
	theHtml += '<A HREF="' + theTmp[1] + '" TARGET="' + target + '" ONCLICK="javascript: pageTracker._trackPageview(' + banner + ');"><img src="home/' + theId + '.jpg" width="641" height="184" border="0"></A>';
	theHtml += '</DIV>';

	document.write(theHtml);
}
/*-----------------------------------------------------------------------*/

