/*

function getwidth() {
	IE = (document.all);
	NC = (document.layers);
	Opera = (document.getElementById);
	if (IE || Opera) send = document.body.clientWidth;
	if (NC) send = window.innerWidth;
	return send;
}

function solucion() {
	if(getwidth()<1070){
		document.getElementById("solucion_c1").style.lineHeight="130%";
		document.getElementById("solucion_c2").style.lineHeight="130%";
	}
	if(getwidth()>1070){
		document.getElementById("solucion_c1").style.lineHeight="160%";
		document.getElementById("solucion_c2").style.lineHeight="160%";
	}
}

function ypast() {
	if(getwidth()<1070){
		document.getElementById("actualizaciones").style.fontSize="65%";
	}
	if(getwidth()>1070){
		document.getElementById("actualizaciones").style.fontSize="70%";
	}
}

*/

function linx(link) {
	imax=36;
	i=1;
	while(i<imax) {
		document.getElementById("b" + i).style.display="none";
		i++;
	}
	i=1;
	while(i<imax) {
		document.getElementById("l" + i).style.fontWeight="normal";
		i++;
	}
	document.getElementById("b" + link).style.display="block";
	document.getElementById("l" + link).style.fontWeight="bold";
}