<th>Nombre/Raz&oacute;n</th>
                <th>Tel&eacute;fono</th>
                <th>Estado</th>
                <th>Ciudad</th>
                <th>Tipo de Expediente</th>
                <th>Acciones</th>
            </tr>
        </thead>

        <tbody style="text-transform: uppercase;">
        	<?php 
include_once '../controller/cExpediente.php';
include_once "../controller/cAsociarExpediente.php";
$asocr = new cAsociarExpedientes();
$exp = new cExpediente();
$con = $exp->listaExpAsoc($_POST['inicio'], $_POST['fin']);
while ($l = $con->NextRow()) {
    ?>
        	<tr>
                <td><?php 
    echo $l['id_persona'];
    ?>
</td>
        		<td><?php 
    echo $l['clave_agrupadora'];
    ?>
</td>
        		<td class="odd"><?php 
    echo $l['razon'] . $l['nombre'] . ' ' . $l['a_pat'] . ' ' . $l['a_mat'];
    ?>
</td>