// フラッシュを書き出す

function xflash(){
	
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="800" height="270" id="top_index" align="middle">\n');
document.write('<param name="allowScriptAccess" value="sameDomain">\n');
document.write('<param name="movie" value="top_index.swf" /><param name="quality" value="high">\n');
document.write('<param name="bgcolor" value="#ffffff">\n');
document.write('<embed src="top_index.swf" menu="false" quality="high" bgcolor="#ffffff" width="800" height="270" name="top_index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">\n');
document.write('</object>\n');
}

function xWindowOpen(url, width, height){
  window.open( url,
			        "_blank",
			        " toolbar=no"
			       +",location=no"
			       +",directories=no"
			       +",status=no"
			       +",menubar=no"
			       +",scrollbars=no"
			       +",resizable=yes"
			       +",titlebar=yes"
			       +",channelmode=no"
			       +",width="+width
			       +",height="+height
			       +",left=" + ((screen.width - width) / 2)
			       +",top=" + ((screen.height - height) / 2)
			      );
}

