var elementoAjax='';
function cargaAdjunto(tipo,id)
{
   elementoAjax='visualizacionAdjuntos';
   //idElemento=vectorAdjuntos[tipo][id];
   //alert(idElemento);

   var currDate = new Date();
   var parametros='peticionUnica='+currDate.getTime();
   parametros+='&tipo='+encodeURIComponent(tipo);
   parametros+='&idAdjunto='+encodeURIComponent(id);
   //alert(parametros);
   if(tipo=="videos")
      peticionAjax("ajax/verAdjunto.php",parametros,ejecutaJS,'POST',true);
   else
      peticionAjax("ajax/verAdjunto.php",parametros,muestraHTML,'POST',true);

}
