
function enlazaMapa(param1,nombre,seccion){
        var paramtipo="";
     
		switch (seccion) {
			case "4":
				window.open("/tiendas-informatica/"+param1+".aspx", "_self")
				return;
				break;
			default:
				paramtipo="&paramtipo="+nombre;
			break;
		}
	
		ruta="ruta=" +  encodeURIComponent(ruta);
		param="&param=" + param1;
		
		
		Request("/ajax/chkCentro.aspx",RespuestaAbrirCentro,ruta+param+paramtipo);
}

function RespuestaAbrirCentro(s)
{
  
    if(s!='nulo') location.href=s;//window.open(document.location,'_self');
}

function cambio()
{
	if (document.mapas.paramtipo.value== 1)
	{
		document.mapas.paramtipo.value=2;
	}else{
	
		document.mapas.paramtipo.value=1;
	}
}

function irscroll()
{
    document.documentElement.scrollTop="216";
    document.body.scrollTop="186";
}   