// FLASH01
function ythflash1()
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="480" height="380">\n');
    document.write('<param name="movie" value="image/TOPmove3.swf">\n');
    document.write('<param name="quality" value="high">\n');

    document.write('<embed src="image/TOPmove3.swf" width="480" height="380" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash">\n');
    document.write('</embed>\n');

    document.write('</object>\n');
}

// FLASH02
function ythflash2()
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="260" height="50">\n');
    document.write('<param name="movie" value="image/niji6.swf">\n');
    document.write('<param name="quality" value="high">\n');

    document.write('<embed src="image/niji6.swf" width="260" height="50" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash">\n');
    document.write('</embed>\n');

    document.write('</object>\n');
}

// scroll
function sctop(l){
		sc_top(l,450);
}
	
function sc_top(l,y){
	y = y + (l - y)*.2;	// sokudo
	window.scroll(0,y);
	if (((l - y) <= .5)&&((l - y) >= -.5))
	{					
		y = l;
	}else{
		setTimeout("sc_top("+l+","+y+")",1);
	}
}

//band01
function popband01()
@{ var win1;
  win1=window.open('popband01.html','popband01','resizable=1,menubar=1,scrollbars=1');
  win1.focus();}
