/* Flashロード用スクリプト
========================================== */
function loadFlash(width,height,src,id,ver) {
	html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+ver+'" width="'+width+'" height="'+height+'">';
	html = html + '<param name="movie" value="'+src+'" />';
	html = html + '<param name="quality" value="best" />';
	html = html + '<param name="play" value="true" />';
	html = html + '<embed src="'+src+'" width="'+width+'" height="'+height+'" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" quality="best" play="true"></object>';

  document.getElementById(id).innerHTML = html;
}