function generateFlash(id, filename, width, height, params) {

	if (typeof params != "undefined") params = {};

	var result = "";

	

	result += "<!--[if !IE]>--><object data='" + filename + "' height='" + height + "' id='" + id + "' type='application/x-shockwave-flash' width='" + width + "'><!--<![endif]-->";

	result += "<!--[if IE]><object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' height='" + height + "' width='" + width + "' ><param name='movie' value='" + filename + "' /><![endif]-->";

	for (var i in params) {

		result += "<param name='" + i + "' value='" + params[i] + "' />";

	}

	result += "</object>";

	

	document.write(result);

}










