// loadPlayer.js for Flash Live Player v1.0
// copyright (C) 2007 J-Stream Inc. All rights reserved.
function loadSwf(swfname, jsconfigfile, jsfullscreen){
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0"');
	document.write(' width="100%"');
	document.write(' height="100%">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="allowFullScreen" value="' + jsfullscreen + '">');
	document.write('<param name="movie" value="'+swfname+'">');
	document.write('<param name="flashvars" value="jsconfigfile=' + jsconfigfile + '">');
	document.write('<embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/jp/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"');
	document.write(' width="100%"');
	document.write(' height="100%"');
	document.write(' quality="high"');
	document.write(' allowFullScreen="' + jsfullscreen + '"');
	document.write(' src="'+swfname+'"');
	document.write(' flashvars="jsconfigfile=' + jsconfigfile + '">');
	document.write('</embed>');
	document.write('</object>');
}
