function carga (seccion, num_actual) {
	window.location.href = "../bd/noticiaweb.asp?nrev=" + num_actual + "&idnot=" + seccion;
}


function escribeDesplegable(numero){
	ultimo = 103;
	primero = 67;
	
	document.write ("<select name='arroba' onChange='parent.location.href=this.options[this.selectedIndex].value' size=1>");
	i = primero;
	while (i<=ultimo) {
		document.write ("<option value='../arroba" + i + "/base.htm'");
		if (i==numero) {
			document.write (" selected");
			}
		document.write (">");
		document.write ("@rroba " + i++);
		document.write ("</option>");
		}
//	alert ("numero = " + numero + ", i = " + i +"<br>");
	document.write ("</select>");
}