" size="100" maxlength="100" tabindex="1"></td>
    </tr>
    <tr>
      <td height="22" align="right"><span class="sin-borde" body="bold"><strong>(*)</strong></span> Direcci&oacute;n&nbsp;</td>
      <td height="22" colspan="4"><input name="txtdireccion" type="text" id="txtdireccion" onKeyPress="return keyRestrict(event,'1234567890'+'abcdefghijklmnñopqrstuvwxyz '+',-.;*&?¿!¡+()[]{}%@#/'+'´áéíóú');" value="<?php 
print $ls_direccion;
?>
" size="100" maxlength="254" tabindex="2"></td>
    </tr>
    <tr>
      <td height="22" align="right"> <span class="sin-borde"></span> Tipo de Empresa </td>
      <td height="22" colspan="4"><p>
      <?php 
//Llenar Combo Banco
$ls_codemp = $la_emp["codemp"];
$rs_pro = $io_proveedor->uf_select_llenarcombo_tipoorganizacion($ls_codemp);
?>
          <select name="cmbtiporg" id="cmbtiporg"  style="width:167px" tabindex="3">
	  <?php 
while ($row = $io_sql->fetch_row($rs_pro)) {
    $ls_codtiporg = $row["codtipoorg"];
    $ls_dentiporg = $row["dentipoorg"];
    if ($ls_codtiporg == $ls_tiporg) {
        print "<option value='{$ls_codtiporg}' selected>{$ls_dentiporg}</option>";
    } else {
        print "<option value='{$ls_codtiporg}'>{$ls_dentiporg}</option>";
    }
}
?>
          </select>
      </p>      </td>