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