<!-- ##################################### datos Idiomas ##################################### -->
<tr>
<td colspan="2"><span style="border-bottom: 1px solid #ED6D16;"><br/>Idiomas<br/></span><br/></td>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Idioma </div></td>
<td><input name="language" id="language" type="text" size="34" value="<?php echo $row_CviCvitaeLanguage["language"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('language');
language.add(Validate.Length, { minimum: 4 } );
language.add( Validate.Presence );
</script>
</tr>
<tr><td colspan="2">
<select name="speaking" style="display:none">
<option value="" selected="selected" ></option>
</select>
Hablar
<select name="speaking">
<option value="<?php echo $row_CviCvitaeLanguage["speaking"]; ?>" selected="selected" ><?php echo $row_CviCvitaeLanguage["speaking"]; ?></option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
</select>
</td>
</tr>
<!-- ##################################### datos Experiencia Laboral ##################################### -->
<tr>
<td colspan="2"><span style="border-bottom: 1px solid #ED6D16;"><br/>Experiencia Laboral<br/></span><br/></td>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Nombre de la Empresa </div></td>
<td><input name="company_name" id="company_name" type="text" size="74" value="<?php echo $row_CviExperience["company_name"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('company_name');
company_name.add(Validate.Length, { minimum: 4 } );
company_name.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Direccion de la Empresa </div></td>
<td><input name="company_address" id="company_address" type="text" size="74" value="<?php echo $row_CviExperience["company_address"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('company_address');
company_address.add(Validate.Length, { minimum: 4 } );
company_address.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Sector de la Empresa </div></td>
<td><input name="company_sector" id="company_sector" type="text" size="74" value="<?php echo $row_CviExperience["company_sector"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('company_sector');
company_sector.add(Validate.Length, { minimum: 4 } );
company_sector.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Funciones </div></td>
<td><input name="functions" id="functions" type="text" size="34" value="<?php echo $row_CviExperience["functions"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('functions');
functions.add(Validate.Length, { minimum: 4 } );
functions.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Categoria </div></td>
<td><input name="position" id="position" type="text" size="34" value="<?php echo $row_CviExperience["position"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('position');
position.add(Validate.Length, { minimum: 4 } );
position.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Desde el </div></td>
<?php
$start_at = $row_CviExperience["starts_at"];
?>
<td><input name="starts_at" id="starts_at" type="text" size="10" value="<?php print $start_array[2].'-'.$start_array[1].'-'.$start_array[0]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('starts_at');
starts_at.add(Validate.Numericality);
starts_at.add(Validate.Length, { minimum: 4 } );
starts_at.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Hasta el </div></td>
<?php
$end_at = $row_CviExperience["ends_at"];
?>
<td><input name="ends_at" id="ends_at" type="text" size="10" value="<?php print $end_array[2].'-'.$end_array[1].'-'.$end_array[0]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('ends_at');
ends_at.add(Validate.Numericality);
ends_at.add(Validate.Length, { minimum: 4 } );
ends_at.add( Validate.Presence );
</script>
</tr>
<!-- ##################################### datos Capacidades y Trabajo ##################################### -->
<tr>
<td colspan="2"><span style="border-bottom: 1px solid #ED6D16;"><br/>Capacidades y Trabajo<br/></span><br/></td>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Con ordenadores </div></td>
<td><input name="computer_capabilities" id="computer_capabilities" type="text" size="74" value="<?php echo $row_CviCvitae ["computer_capabilities"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('computer_capabilities');
computer_capabilities.add(Validate.Length, { minimum: 14 } );
computer_capabilities.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Tecnicas </div></td>
<td><input name="technical_capabilities" id="technical_capabilities" type="text" size="74" value="<?php echo $row_CviCvitae ["technical_capabilities"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('technical_capabilities');
technical_capabilities.add(Validate.Length, { minimum: 14 } );
technical_capabilities.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Artisticas </div></td>
<td><input name="artistic_capabilities" id="artistic_capabilities" type="text" size="74" value="<?php echo $row_CviCvitae ["artistic_capabilities"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('artistic_capabilities');
artistic_capabilities.add(Validate.Length, { minimum: 14 } );
artistic_capabilities.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Poder de Organizacion </div></td>
<td><input name="organization_capabilities" id="organization_capabilities" type="text" size="74" value="<?php echo $row_CviCvitae ["organization_capabilities"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('organization_capabilities');
organization_capabilities.add(Validate.Length, { minimum: 14 } );
organization_capabilities.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Trabajo en Grupo </div></td>
<td><input name="social_capabilities" id="social_capabilities" type="text" size="74" value="<?php echo $row_CviCvitae["social_capabilities"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('social_capabilities');
social_capabilities.add(Validate.Length, { minimum: 14 } );
social_capabilities.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Otras Capacidades </div></td>
<td><input name="other_capabilities" id="other_capabilities" type="text" size="74" value="<?php echo $row_CviCvitae ["other_capabilities"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('other_capabilities');
other_capabilities.add(Validate.Length, { minimum: 14 } );
other_capabilities.add( Validate.Presence );
</script>
</tr>
<tr>
<td nowrap="nowrap"><div align="right">Otra informacion </div></td>
<td><input name="other_info" id="other_info" type="text" size="74" value="<?php echo $row_CviCvitae ["other_info"]; ?>" /></td>
<script type="text/javascript">
var title = new LiveValidation('other_info');
other_info.add(Validate.Length, { minimum: 14 } );
other_info.add( Validate.Presence );
</script>
</tr>
<tr>
<td> <br/><br/></td>
<input type="hidden" name="user_id" id ="user_id" value="<? echo $user_id; ?>" />
<td align="right"><input type="submit" value="enviar" /> </td>
</tr>
</table>
</fieldset></td>
</tr>
</table>
</form>
</div>
[/PHP]