function loadVideo(name,url)
{
	var title = "<h2>" + name + "</h2>";
	var flash = "<object id='player' width='425' height='258'>" +
					"<param name='movie' value='" + url + "&hl=en&fs=1&showinfo=0'/>" +
					"<param name='allowFullScreen' value='true'/>" +
					"<param name='allowscriptaccess' value='always'/>" +
					"<embed src='" + url + "&hl=en&fs=1&showinfo=0' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='425' height='258'/>" +
				"</object>" +
				"<div id='youtube_loading'>loading video...</div>";
	$("#youtube_title").html(title);
	$("#youtube_video").html(flash);
}