
function playerVideo(file_video,file_imagen,width,height,backcolor,frontcolor,lightcolor,screencolor){
  var s1 = new SWFObject("http://www.armada.mde.es/jwplayer/player.swf","player1",width,height,"6","#000000");

  s1.addParam("allowfullscreen","true");
  s1.addParam("allowscriptaccess","always");
  s1.addParam("wmode","transparent");
  s1.addVariable("file",file_video); //tiene que estar la ruta absoluta
  s1.addVariable("backcolor",backcolor);  //barra del play
  s1.addVariable("frontcolor",frontcolor);  // color del play
  s1.addVariable("lightcolor",lightcolor); // color barra desplazamiento y volumen
  s1.addVariable("screencolor",screencolor);
  s1.addVariable("image",file_imagen); // ponemos una imagen antes de que el usuario pulse play
  s1.write(this.document.getElementById("flashcontent")); //nombre de la capa donde aparecerá el vídeo

}

