function flashset(Fname,Fwidth,Fheight,Fimage){
	fflag=0;
	if (document.layers || document.all || document.getElementById) {
		if (document.all && !window.opera ) {
			document.write('<scr' + 'ipt type="text/vbscript"\> \n');
			document.write('on error resume next \n');
			document.write('fflag=( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6")))\n');
			document.write('</scr' + 'ipt> \n');
			}
		else if (navigator.plugins['Shockwave Flash']) fflag=1;
	}
	
	if (fflag==0)
		document.write('<div><a href="http://www.adobe.com/go/getflashplayer_jp"><img alt="" src="' + Fimage + '" width="' + Fwidth + '" height="' + Fheight + '" border="0" /></a></div>');
	else {
		if (document.all && !window.opera)
			document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + Fwidth +'" height="' + Fheight + '">'+
				'<param name="movie" value="' + Fname + '" />'+
				'<param name="quality" value="high" />'+
				'<param name="menu" value="false" />'+
				'<param name="allowScriptAccess" value="always" />'+
				'</object>'+
				'');
		else
			document.write('<object type="application/x-shockwave-flash" data="' + Fname + '" width="' + Fwidth + '" height="' + Fheight + '">'+
				'<param name="quality" value="high" />'+
				'<param name="menu" value="false" />'+
				'<param name="allowScriptAccess" value="always" />'+
				'</object>'+
				'');
	}

}