function animazione(nome,wi,he) {
   // utilizza questo codice se hai un unico filmato
   
      document.write("<object type='application/x-shockwave-flash' data='"+nome+"' width='"+wi+"' height='"+he+"' id='filmato'>\n");
      document.write("<param name='movie' value='"+nome+"' />\n");
      document.write("<param name='quality' value='high' /><param name='wmode' value='transparent' />\n");
      document.write("</object>\n");
}
function flash(nome,wi,he) {
   // utilizza questo codice se hai un unico filmato
      document.write("<object type='application/x-shockwave-flash' data='"+nome+"' width='"+wi+"' height='"+he+"' id='filmato'>\n");
      document.write("<param name='movie' value='"+nome+"' />\n");
      document.write("<param name='quality' value='high' /><param name='wmode' value='transparent' />\n");
      document.write("<embed allowfullscreen='true' flashvars='autoplay=false&amp;brand=embed'");
      document.write(" height='"+he+"' width='"+wi+"' src='"+nome+"'></embed></object>\n");
}
function ustream(nome,wi,he) {
   // utilizza questo codice se hai un video
      document.write("<embed allowfullscreen='true' flashvars='autoplay=false&amp;brand=embed'");
      document.write(" height='"+he+"' width='"+wi+"' src='"+nome+"'></embed>");
}