
/*swf配置*/
function setSwfContents(url,w,h) {
	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="'+w+'" height="'+h+'" id="movie">' );
	document.write( '<param name="movie" value="'+url+'" />' );
	document.write( '<param name="quality" value="high" />' );
	document.write( '<embed src="'+url+'" quality="high" width="'+w+'" height="'+h+'"  type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />' );
	document.write( '</embed>' );
	document.write( '</object>');
}

/*swfトップ配置*/
function setSwfTop(url,w,h) {
document.write( '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' );
document.write( 'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+w+'" height="'+h+'">' );
document.write( '<param name="movie" value="'+url+'" />' );
document.write( '<param name="flashvars" value="param=' + valueList[ "param" ] + '" />' );
document.write( '<param name="quality" value="high" />' );
document.write( '<embed src="'+url+'" flashvars="param=' + valueList[ "param" ] + '" quality="high" width="'+w+'" height="'+h+'" type="application/x-shockwave-flash">' );
document.write( '</embed>' );
document.write( '</object>');
}
