function flash(nome,wi,he){
   // utilizza questo codice se hai pił filmati non numerati e con dimensioni differenti
   
      document.write("<object type='application/x-shockwave-flash' data='"+nome+"'width='"+wi+"' height='"+he+"' id='file_"+nome+"'>\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 video(nome,wi,he){

      document.write("<embed src=\""+nome+"\"\n");
      document.write("      style=\"width:"+wi+"px;height:"+he+"px\" allowFullScreen=\"true\" allowScriptAccess=\"always\" type=\"application/x-shockwave-flash\"></embed>\n");
}
function vimeo(nome,wi,he){
      document.write("<object width=\""+wi+"\" height=\""+he+"\"><param name=\"allowfullscreen\" value=\"true\" /><param name=\"allowscriptaccess\" value=\"always\" />\n");
      document.write("<param name=\"movie\" value=\""+nome+"\" /><embed src=\""+nome+"\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\""+wi+"\" height=\""+he+"\"></embed></object>\n");
}
function iframe(nome,wi,he){
      document.write("<iframe width='"+wi+"' height='"+he+"' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='"+nome+"'></iframe>");
}