<!--
showSWF('scroller.swf',600,300,'images/img_flash.jpg');
function showSWF(path,width,height,substitute_image){
	var mime = "application/x-shockwave-flash";
	var n = navigator;
	var d = document;
	if (n.userAgent.indexOf('Mobile') == -1){
		var hash = new Date();
		var time = hash.getTime();
		path = path + "?timer=" + time;
		d.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="'+width+'" height="'+height+'">');
		d.write('<param name="movie" value="'+path+'"></param>');
		d.write('<param name="quality" value="high"></param>');
		d.write('<param name="wmode" value="opaque"></param>');
		d.write('<embed src="'+path+'" wmode="opaque" quality="high" pluginspage="http://www.macromedia.com/jp/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'">');
		d.write('</embed>');
		d.write('</object>');
	}
	else {
		d.write('<img src="'+substitute_image+'" width="'+width+'" height="'+height+'" />')
	}
}
//-->
