var bnrObj1 = [
	//set1 -------------------------------------------------
	{
		'src' : '/bnr/images/bnr_eneostv.swf',
		'param' : '',
		'type': 'flash',
		'alt' : '動画サイト ENEOS TV',
		'height' : '48',
		'URL' : 'http://www.eneos-tv.jp/',
		'target' : 'eneos_window',
		'cap' : '<img src="/common/images/com_ic_004.gif" alt="" width="13" height="16">ENEOSの商品・サービス、取り組みなどをムービーでご紹介。'
	},
	//set2 -------------------------------------------------
	{
		'src' : '/bnr/images/bnr_cm_enegori.jpg',
		'param' : '',
		'type': 'image',
		'alt' : 'テレビCM',
		'height' : '48',
		'URL' : '/company/about/cm/index.html',
		'target' : '',
		'cap' : 'ENEOSのテレビコマーシャルをご紹介。'
	}
	//最後の “}”の後には “,（カンマ）” を付けない
];



function rndBanner(topbannerObj){
	
	bnSource= new Array();

	for(i=0;i<topbannerObj.length;i++){
		if(topbannerObj[i].type == 'image'){
			if(!topbannerObj[i].param){
				topbannerObj[i].param = "";
			}
			bnSource[i] = '<dl><dt><a href="'+topbannerObj[i].URL+''+topbannerObj[i].param+'" target="'+topbannerObj[i].target+'"><img src="'+topbannerObj[i].src+'" alt="'+topbannerObj[i].alt+'" width="185" height="'+topbannerObj[i].height+'" /></a></dt><dd>' + topbannerObj[i].cap+'</dd></dl>';
		}else if(topbannerObj[i].type == 'flash'){
			bnSource[i] = '<dl><dt><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="185" height="'+topbannerObj[i].height+'"><param name="movie" value="'+topbannerObj[i].src+'"><param name="quality" value="high"><embed src="'+topbannerObj[i].src+'"  quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="185" height="'+topbannerObj[i].height+'"></embed></object></dt><dd>' + topbannerObj[i].cap +'</dd></dl>';
		}
	}
	
	n = Math.floor(Math.random()*bnSource.length);
	document.write(bnSource[n]);
}