function reproduirVideo(idVideo, width, height, file,image,logo,idanalytics){
  var analyticscode;
  if(idanalytics!=''){
	analyticscode='plugins=gapro-1&gapro.accountid='+idanalytics+'&';
  }else{
	analyticscode='';
  }
  
  var player = idVideo.substr(1);
	idVideo = new SWFObject("http://itemsweb.esade.edu/des/esadetv/jwplayer.swf","video" + player,width,height,"9");
  idVideo.addParam("seamlesstabbing","true");
  idVideo.addParam("allowfullscreen","true");
         
  idVideo.addParam("allowscriptaccess","always");
  idVideo.addParam("allownetworking","all");
  idVideo.addParam("flashvars",analyticscode+"width="+width+"&height="+height+"&logo="+logo+"&image="+image+"&file="+file+"&streamer=rtmp://fms.esade.edu/cmsvod&autostart=false&controlbar=over");

  idVideo.write("player"+player);
  player.sendEvent("PLAY","true");




}
