function insert_flash(id) {
	
	var html_to_insert  = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ";
	    html_to_insert += "codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='510' height='382'>";
        html_to_insert += "<param name='movie'           value='http://www.youtube.com/v/" + id +"?fs=1&amp;hl=it_IT&amp;rel=0' />";
        html_to_insert += "<param name='quality'         value='high'                               />";
		html_to_insert += "<param name='allowFullScreen' value='true'                               />";
        html_to_insert += "<embed src='http://www.youtube.com/v/" + id +"?fs=1&amp;hl=it_IT&amp;rel=0' quality='high' "; 
		html_to_insert += "pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='510' height='382'>";		   
	    html_to_insert += "</embed>";
        html_to_insert +=  "</object>";	
	
	$("#video").html(html_to_insert);
	
	}
	
/* FLASH INTERNO NON DA YOUTUBE
		   
function insert_flash(path,flv) {
	
	var html_to_insert  = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='510' height='382'>";
        html_to_insert += "<param name='movie'     value='swf/video.swf'                     />";
        html_to_insert += "<param name='quality'   value='high'                              />";
        html_to_insert += "<param name='FlashVars' value='path=" + path + "/" + flv +"'      />"
        html_to_insert += "<embed src='swf/video.swf' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' ";
	    html_to_insert += "FlashVars='path=" + path + "/" + flv +"'";
	    html_to_insert += "type='application/x-shockwave-flash' width='510' height='382'>";		   
	    html_to_insert += "</embed>";
        html_to_insert +=  "</object>";	
	
	$("#video").html(html_to_insert);
	
	}
*/
