// JavaScript Document
function animazione_flash(target, dim_w, dim_h) {
			var obj = target;
			var w = dim_w;
			var h = dim_h;

      document.write("<object type='application/x-shockwave-flash' data='" + obj + "' width='" + w + "' height='" + h + "' id='filmato'> \n");
      document.write("<param name='movie' value='" + target + "' /> \n");
      document.write("<param name='quality' value='high' /><param name='wmode' value='transparent' /> \n");
	  document.write("<embed src='" + target + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + w + "' height='" + h + "'></embed>\n");
      document.write("</object> ");

}

