function flash_show(name,src,width,height){
	document.writeln("<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ");
	document.write("codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' ");
	document.write("id='"+name+"' WIDTH='"+width+"' HEIGHT='"+height+"' ALIGN=''>");
	document.write("<PARAM NAME=movie VALUE='"+src+"'>");
	document.write("<PARAM NAME=wmode VALUE=transparent>");
	document.write("<PARAM NAME=quality VALUE=high>");
	document.write("<EMBED src='"+src+"' quality=high bgcolor=#FFFFFF ");
	document.write("NAME='"+name+"' WIDTH='"+width+"' HEIGHT='"+height+"' ALIGN='' ");
	document.write("TYPE='application/x-shockwave-flash' ");
	document.write("PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'>");
	document.write("</EMBED>");
	document.writeln("</OBJECT>");
}
