function recargarCurso(){
	var idCurso=document.getElementById('select2').value;
	self.location.href='inicio.php?opcion=menucurso&idcurso='+idCurso;
}
function recargarArea(){
	var letraValue=document.getElementById('letra').value;
	var areaValue =	document.getElementById('select').value;
	self.location.href='inicio.php?opcion=area&letra='+letraValue+'&area_id='+areaValue;
}
function filtroCursos(){
	var areaValue=document.getElementById('select').value;
	var letraValue=document.getElementById('letra').value;
	self.location.href='inicio.php?opcion=area&letra='+letraValue+'&area_id='+areaValue;
}
function menucurso(){
	var idCurso=document.getElementById('select2').value;
	self.location.href='inicio.php?opcion=menucurso&idcurso='+idCurso;
}
function filtroCursosPresencial(){
	var areaValue=document.getElementById('select').value;
	var letraValue=document.getElementById('letra').value;
	self.location.href='inicio.php?opcion=presencial&letra='+letraValue+'&area_id='+areaValue;
}
function filtroCursosPuesto(){
	var puestoValue=document.getElementById('select').value;
	var letraValue=document.getElementById('letra').value;
	self.location.href='inicio.php?opcion=puesto&letra='+letraValue+'&puesto_id='+puestoValue;
}
function selectCliente(){
	var letraValue=document.getElementById('letra').value;
	var cliente = document.getElementById('selectCliente').value;
	self.location.href='inicio.php?cliente_id='+cliente+'&opcion=presencial';
}
function selectClientePuesto(){
	var letraValue = document.getElementById('letra').value;
	var	clienteValue = document.getElementById('selectCliente').value;
	self.location.href = 'inicio.php?cliente_id=' + clienteValue + '&opcion=puesto';
}
function selectClienteLetra(letra){
	var clienteValue=document.getElementById('selectCliente').value;
	self.location.href='inicio.php?opcion=presencial&cliente_id='+clienteValue+'&letra='+letra;
}
function selectClienteLetraPuesto(letra){
	var clienteValue=document.getElementById('selectCliente').value;
	self.location.href='inicio.php?opcion=puesto&cliente_id='+clienteValue+'&letra='+letra;
}
function selectArea(){
	var letraValue=document.getElementById('letra').value;
	var clienteValue=document.getElementById('selectCliente').value;
	var select = document.getElementById('select').value;
	self.location.href='inicio.php?opcion=presencial&cliente_id='+clienteValue+'&letra='+letraValue+'&area_id='+select;
}
function selectPuesto(){
	var letraValue=document.getElementById('letra').value;
	var clienteValue=document.getElementById('selectCliente').value;
	var select = document.getElementById('select').value;
	self.location.href='inicio.php?opcion=puesto&cliente_id='+clienteValue+'&letra='+letraValue+'&puesto_id='+select;
}
function cambiarCurso(){
	var piloto = document.getElementById("piloto");
	if(piloto.checked==true){
		piloto.value = 1;
		document.getElementById("cmbcurso").style.visibility="hidden";
		document.getElementById("cmbcursopiloto").style.visibility="visible";
	}else{
		piloto.value = 0;
		document.getElementById("cmbcurso").style.visibility="visible";
		document.getElementById("cmbcursopiloto").style.visibility="hidden";
	}
}
