function FEliminar (borrar, nombre) 
        { 
            var statusConfirm = confirm("¿Realmente desea eliminar a " + nombre + "?"); 
            if (statusConfirm == true) 
            { 
                document.location.href= "directorio_borrar.php?borrar=" + borrar; 
            } 
        } 
		

function FEliminar_Tabla (borrar, nombre, tabla, campo) 
        { 
			
			
			//var statusConfirm = confirm("borrar.php?borrar=" + borrar + "&tabla=" + tabla + "&campo=" + campo);
            var statusConfirm = confirm("¿Realmente desea eliminar " + nombre + "?"); 
            if (statusConfirm == true) 
            { 
                document.location.href= "borrar.php?borrar=" + borrar + "&tabla=" + tabla + "&campo=" + campo; 
			 
            } 
        }


function SubirArchivo (fichero){
	 document.location.href= "subir_fichero.php?fichero=" + fichero;
	}

