function flash(file_name, width, height) {
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'")
	document.write(" codebase='http://download.macromedia.com/pub/shockwave/cabs/")
	document.write("flash/swflash.cab'")
	document.write(" width=" + width + " height=" + height + ">")
	document.write("<param name=movie value='" + file_name + "'>")
	document.write("<param name=quality value=high>")
	document.write("<embed src='" + file_name + "' quality=high  ")
	document.write(" width=" + width + " height=" + height)
	document.write(" type='application/x-shockwave-flash' ")
	document.write("pluginspage='http://www.macromedia.com/go/getflashplayer'>")
	document.write("</embed>")
	document.write("</object>")
}


