function cambiarCapa(){
	
	if(document.getElementById('top10').style.display == ''){
		
		document.getElementById('top10').style.display = 'none';
		
	}
	else{
	
		document.getElementById('top10').style.display = '';
		
	}
	
}


function redirigirPagina(url){
	location.href=url;
}
