function cambiar_horas() {
	var varHini = parseInt(document.getElementById('cmbHoraInicio').value);
	var varHfin = parseInt(document.getElementById('cmbHoraFin').value);
	var varDRes = '<select class="frm_estilo_select" name="cmbHoraFin" id="cmbHoraFin" style="width: 257px;">';
	if(varHini >0){varHini = varHini + 1;}
	else{varHini = 10;}
	for(i=varHini; i<=18; i++){
		if(i==varHfin){
			varDRes = varDRes + '<option value="'+(i+':00')+'" selected="selected">'+(i+':00')+'</option>';
		}
		else{
			varDRes = varDRes + '<option value="'+(i+':00')+'">'+(i+':00')+'</option>';
		}
	}
	varDRes = varDRes + '</select>';
	document.getElementById('divHoraFin').innerHTML = varDRes;
}

function validar_campos(){
	var varNom = document.getElementById('txtNombre').value;
	var varEml = document.getElementById('txtEmail').value;
	var varTel = document.getElementById('txtTelefono').value;
	var varExt = document.getElementById('txtExtension').value;
	if(trim(varNom) == ""){
		alert("Por favor ingresa tu nombre.");
		document.getElementById('txtNombre').focus();
	}
	else{
		if(validarmail(varEml) == false){
			alert("Por favor ingresa un E-mail con el siente formato:\nejemplo@correo.com");
			document.getElementById('txtEmail').focus();
		}
		else{
			if(trim(varTel) == "" || isNaN(varTel) == true){
				alert("Por favor ingresa un número teléfonico valido.");
				document.getElementById('txtTelefono').focus();
			}
			else{
				if(trim(varExt) != "" && isNaN(varExt) == true){
					alert("Por favor ingresa un número de extensión valido.");
					document.getElementById('txtExtension').focus();
				}
				else{
					document.frmLlamar.submit();
				}
			}
		}
	}
}