/*
 * scoreboard.js
 * 
 */


// SET [ Server ]

var gFtPathFlg = 0;    // 0:本サーバ, 1:[html]フォルダ, else:ローカル
var gFtRootPath = '';

if( gFtPathFlg == 0 )     { gFtRootPath = 'http://' + document.domain + '/'; }
else if( gFtPathFlg == 1 ){ gFtRootPath = 'http://' + document.domain + '/test/oricom/www/'; }
else                      { gFtRootPath = ''; }

var gFtImgPath = gFtRootPath + 'common/img/';    //Image Path


// Document Write

with( document ){
	write('<div id="ind-info">');
	write('<p><img src="img/ind_info_tit.gif" width="576" height="30" alt="最新情報！" /></p>');
	write('<div class="ind-info-txt"><marquee scrollamount="2" scrolldelay="30">12月9日（水）に二次審査会及び寄附金贈呈式を開催し、審査結果と式典風景を掲載いたしました。また、展示会情報も併せて掲載いたしました。</marquee></div>');
	write('</div>');
}