/* ------------------------------------------------------------------------ */
/*     "title.js"  Last Update  2008/04/09 revised by S.Washimi              */
/* -------------------------------------------------------------------------*/

//タイトル
	var title1 = '<img src="img/title1.jpg" alt="welcome" />';
//	var title1 = '<img src="img/title1.jpg" alt="welcome" class="reflect ropacity50 rheight40" />';


//タイトル表示
function title(){
	document.write(title1);
}

//Flash
function ffilm(){

/* flashファイルのpath */
	var flashfile = 'flash/';


/* 日時設定（月の値は0～11です、月－１で設定すること） */
	var xday = new Date(2009, 8, 19);


	/* 設定日までの日数を算出 */
		var now = new Date();
		var days = ((xday.getTime() - now.getTime()) / (24*60*60*1000));
		days = Math.ceil(days);

	/* 設定日未満の処理 */
		if(days > 0) flashfile += '090919.swf';

	/* 設定日の処理 */
		if(days == 0) flashfile += '090919.swf';

	/* 設定日より後の処理 */
//		if(days < 0) flashfile += '090919.swf';
		if(days < 0) flashfile += 'normal.swf';


	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="420" height="130" id="' + flashfile + '" align="middle">\n');
	document.write('<param name="allowScriptAccess" value="sameDomain">\n');
	document.write('<param name="movie" value="' + flashfile + '">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<embed src="' + flashfile + '" quality="high" width="420" height="130" name="' + flashfile + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">\n');
    document.write('</object>\n');
}
