//DESCARGA RUTAS GPS

$(document).ready(function () {
  $("#mostrar_descarga").click(function () {
     $("#descarga").toggle("slow"); return false;
  })
  $("#cierre_descarga, #cancelar_descarga").click(function () {
     $("#descarga").hide("slow"); return false;
  })

  $("#button").click(function () {
	var extension = $("input[@name='ruta']:checked").val()
	nombreurl = document.location.pathname;
	posicion = nombreurl.lastIndexOf('/',nombreurl.length);
	nombre = unescape(nombreurl.substring(posicion+1,nombreurl.length));
	nombre = nombre.replace('_aerea.html','');
	nombre = nombre.replace('_aerea.php','');
	var ruta = '../descargas/descargar.php?bajar=' + nombre + '.' + extension
	location.href= ruta;
	})

})	
