//<a href="javascript:imprSelec('seleccion')" >Imprime la ficha</a>

function imprSelec(nombre)
{
  var ficha = document.getElementById(nombre);
  var ventimp = window.open(' ', 'popimpr');
  ventimp.document.write( ficha.innerHTML );
  ventimp.document.close();
  ventimp.print( );
  ventimp.close();
} 

function ver_video(strFichero)
{
        var direccion = "ver_video.asp?id=" + strFichero;
        open (direccion,'audios','toolbar=0,location=0,directories=0,menubar=0,status=0,resizable=0,scrollbars=0,width=450,height=450,left=0,top=0');
}  
