function includeFlash(version, width, height, file_name, file_path)
{
	var proto = (("https:" == document.location.protocol) ? "https://" : "http://");
	var html = new Array();
	html.push('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="'+proto+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+version+'" width="'+width+'" height="'+height+'">');
	html.push('<param name="movie" value="'+file_path+'/'+file_name+'">');
	html.push('<param name="quality" value="high">');
	html.push('<param name="wmode" value="transparent">');
	html.push('<embed src="'+file_path+'/'+file_name+'" wmode="transparent" quality="high" pluginspage="'+proto+'www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>');
	html.push('</object>');
	
	jQuery('#flash_player').html(html.join(''));
}

