function cargavideo(capax,delvideo) {  
//  alert(delvideo);
   
    /*
      use flashembed to place flowplayer into HTML element 
      whose id is "example" (below this script tag)
    */
    flashembed(capax, 
   
		/* 
			first argument supplies standard Flash parameters. See full list:
			http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
		*/
      {
         src:'../video/FlowPlayerDark.swf',
			width: 202, 
			height: 200

      },
		
      /*
			second argument is Flowplayer specific configuration. See full list:
			http://flowplayer.org/player/configuration.html
		*/
      {config: {   
			videoFile: delvideo,
			initialScale: 'scale',
			emailPostUrl: 'http://www.eleconomico.es',
			emailPostVideoLink: 'http://www.eleconomico.es',
			embedCode: '----------',
			showMenu: false,
			protected: true,
			autoPlay: false
			
      }} 
   );
}