// JavaScript Document
function fncLoadSwf(strFileNameSwf,strFileNameImg,inWidth,inHeight,strAltText){

	strCode = '<object type="application/x-shockwave-flash" data="' + strFileNameSwf + '" width="' + inWidth + '" height="' + inHeight + '">';
						
	strCode = strCode + '<param name="movie" value="' + strFileNameSwf + '" />';
	
/* 代替画像(レイアウトが崩れる場合があるので、現状はコメント化)	
	strCode = strCode + '<img src="' + strFileNameImg + '" width="' + inWidth + '" height="' + inHeight + '" alt="' + strAltText + '" />';
*/						
	strCode = strCode + '</object>';

	document.write(strCode);
}
