function cambiarLoc_(unDocument, unCombo) {
	unDocument.location = unCombo[unCombo.selectedIndex].value;
}

function comboMesAno() {
	document.write ('<form name="frmComboMesAno" class="campos">');
	document.write( '<select name="cbComboMesAno" class="botones">');	
	document.write ('<option  value="#" selected>Ediciones anteriores</option>'); 
	document.write ('<option  value="/cordoba/boletin/boletin07/index.html" >Cordoba Informa Nš 7</option>');
    document.write ('<option  value="/cordoba/boletin/boletin06/index.html" >Cordoba Informa Nš 6</option>');
	document.write ('<option  value="/cordoba/boletin/boletin05/index.html" >Cordoba Informa Nš 5</option>');
    document.write ('<option  value="/cordoba/boletin/boletin04/index.html" >Cordoba Informa Nš 4</option>');
	document.write ('<option  value="/cordoba/boletin/boletin03/index.html" >Cordoba Informa Nš 3</option>');
	document.write ('<option  value="/cordoba/boletin/boletin02/index.html" >Cordoba Informa Nš 2</option>');
	document.write ('<option  value="/cordoba/boletin/boletin01/index.html" >Cordoba Informa Nš 1</option>');
	document.write ('</select>'); 
	document.write ('&nbsp;&nbsp;'); 
	document.write ('<input type="button" value="Ver" onClick="cambiarLoc_(document, document.frmComboMesAno.cbComboMesAno)">'); 
	document.write ('</form>');
}
	
 
