//IEでflashコンテンツを表示すると
//Press OK to continue loading the content of this page
//というダイアログが表示される現象を回避する。
// http://www.adobe.com/jp/devnet/activecontent/articles/devletter.html 

function printFlashCode()
{
	document.write(' <embed id="index_flash" src="./img/index.swf"\n');
	document.write(' name="index" quality="high" \n');
	document.write(' width="784px" height="330px" \n');
	document.write(' play="true" loop="false" allowScriptAccess="always" \n');
	document.write(' type="application/x-shockwave-flash" >\n');
	document.write(' </embed> \n');
}

