function pasteFlash(inside_id, percorso, width, height, id)
{
		document.getElementById(inside_id).innerHTML = 	"<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" id=\""+id+"\" width=\""+width+"\" height=\""+height+"\">" +
								"<param name=\"movie\" value=\""+percorso+"\">" +
								"<param name=\"menu\" value=\"false\">" +
								"<param name=\"quality\" value=\"high\">" +
								"<param name=\"scale\">" +
								"<param name=\"salign\" value=\"t\">" +
								"<param name=\"bgcolor\" value=\"#ffffff\">" +
								"<param name=\"wmode\" value=\"transparent\">" + 
								"<embed type=\"application/x-shockwave-flash\" src=\""+percorso+"\" id=\"" + id +  "_embed\" name=\"" + id +  "_embed\"  quality=\"best\" wmode=\"transparent\" salign=\"t\" height=\""+height+"\" width=\""+width+"\">" + 
								"</embed>" +
								"</object>";

}