<th>Clave</th>
            					<th>Nombre/Razon</th>
            					<th>Ciudad</th>
            					<th>CURP</th>
            					<th>RFC</th>
            					<th>Telefono</th>
            					<th>Tipo Expediente</th>
            					<th>Acciones</th>
            				</tr>
            			</thead>
            			<!--cuerpo de la tabla empleados-->
            			<tbody style="text-transform: uppercase;">
            				<?php 
include '../controller/cContratos.php';
$empl = new cContratos();
$emples = $empl->getExpedientesSinContrato($inicio, $fin);
while ($em = $emples->NextRow()) {
    ?>
            					<tr>
            						<td><?php 
    echo $em['clave_agrupadora'];
    ?>
</td>
            						<td><?php 
    echo $em['razon'] . " " . $em['nombre'] . " " . $em['a_pat'] . " " . $em['a_mat'] . " ";
    ?>
</td>
            						<td><?php 
    echo $em['ciudad'];
    ?>
</td>
																			<th>Nombre/Razon</th>
																			<th>Ciudad</th>
																			<th>Estado</th>
																			<th>CURP</th>
																			<th>RFC</th>
																			<th>Telefono</th>
																			<th>Tipo Expediente</th>
																			<th>Acciones</th>
																		</tr>
																	</thead>
																	<!--cuerpo de la tabla empleados-->
																	<tbody style="text-transform: uppercase;">
																		<?php 
include '../controller/cContratos.php';
$empl = new cContratos();
$emples = $empl->getExpedientesSinContrato($_POST['inicio'], $_POST['fin']);
while ($em = $emples->NextRow()) {
    ?>
																		<tr>
																			<td><?php 
    echo $em['razon'] . " " . $em['nombre'] . " " . $em['a_pat'] . " " . $em['a_mat'] . " ";
    ?>
</td>
																			<td><?php 
    echo $em['ciudad'];
    ?>
</td>
																			<td><?php 
    echo $em['estado'];
    ?>
</td>