// OBTENER EL PARAMETRO ESPECIFICADO DE LA QUERY STRING DE LA URI
function uriParamValue( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}

function actualiza_mapa(posicionBici, marcadorBici)
{
	marcadorBici.setPosition(posicionBici);
}

function blink_aviso(componente)
{
	if (document.getElementById(componente).style.display != "none")
		document.getElementById(componente).style.display = "none";
	else
		document.getElementById(componente).style.display = "";
}


