function play_flash(video_url)
{
	$("div.video_flash").show_flash("/template/flash/video.swf","/template/upload/flv/"+video_url,480,320,1);

}

/*

$(function(){uniworld_list_show(0);});
				
				function uniworld_list_see_all()
				{
					$("div.uniworld_list_show").fadeOut("fast",function(){$(".uniworld_list_hide").fadeIn("fast");});
					$("div.uniworld_list_show").html("");
				}
				
				var uniworld_list_current_page=0;
				var per_page=5;
				
				function uniworld_list_get_page(p_o_n)
				{
					var total;
					
					
					total=parseInt($("ul.uniworld_list_hide li").length/per_page);			
					
					
					if (p_o_n==0)
					{
						uniworld_list_current_page-=1;
						if(uniworld_list_current_page<0)
						{
							uniworld_list_current_page=total;
						}
					}
					else
					{
						uniworld_list_current_page+=1;

						if(uniworld_list_current_page>total)
						{
							uniworld_list_current_page=0;
						}
					}
					
					return uniworld_list_current_page;
				}
				
				function uniworld_list_previous()
				{
					uniworld_list_show(uniworld_list_get_page(0));
				}
				
				function uniworld_list_next()
				{
					
					uniworld_list_show(uniworld_list_get_page(1));
				}
				
				function uniworld_list_show(page_index)
				{
					$("div.uniworld_list_show ul").fadeOut("fast",function(){					
					
					var html="";
					
					var start_number;
					var end_number;
					var per_page=5;
					
					var i;
					
					var total;
					
					
					total=$("ul.uniworld_list_hide li").length;
					
					start_number=page_index*per_page;
					end_number=start_number+(per_page);
					
					if (end_number>total)
					{
						end_number=total;
					}
					
					for (i=start_number;i<end_number;i++)
					{
						html+="<li>"+$("ul.uniworld_list_hide li:eq("+i+")").html()+"</li>";
					}
					
					$("div.uniworld_list_show ul").html(html);					
					$("div.uniworld_list_show ul").fadeIn("fast");
					})
				}*/