function AnoLegislativo(){
  var aux=self.document.frmPleno.AnosLegislativos.options[self.document.frmPleno.AnosLegislativos.selectedIndex].value;
  document.frmPleno.C_AnoLegislativo.value = aux;
return;
}

function PeriodoGobierno(){
  var aux=self.document.frmPleno.Periodos.options[self.document.frmPleno.Periodos.selectedIndex].value;
  document.frmPleno.C_Periodo.value = aux;
return;
}

function Legislatura(){
  var aux = self.document.frmPleno.Legislatura.options[self.document.frmPleno.Legislatura.selectedIndex].value;
  document.frmPleno.C_Legislatura.value = aux;
return;
}


function OrganoCongreso(){
  var aux = self.document.frmPleno.Organos.options[self.document.frmPleno.Organos.selectedIndex].value;
  document.frmPleno.C_Organo.value = aux;
return;
}

function Region(){
  var aux=self.document.frmPleno.Region.options[self.document.frmPleno.Region.selectedIndex].value;
  document.frmPleno.C_Region.value = aux;
return;
}


function EnviaPeriodo(){
  PeriodoGobierno();
  document.frmPleno.submit();
return;
}

function EnviaPeriodoyAno(){
  PeriodoGobierno();
  AnoLegislativo();
  document.frmPleno.submit();
return;
}

function EnviaPeriodoAnoyOrgano(){
  PeriodoGobierno();
  AnoLegislativo();
  OrganoCongreso();
  document.frmPleno.submit();
return;
}

function EnviaPeriodoAnoyLegislatura(){
  PeriodoGobierno();
  AnoLegislativo();
  Legislatura();
  document.frmPleno.submit();
return;
}

function EnviaRegion(){
  Region();
  document.frmPleno.submit();
return;
}


