57
| <![CDATA[<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-145274-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>]]>
|
214
| <![CDATA[<script type="text/javascript">
$(function () {
$("#utilidades_SiteMapPath span:first").css("display", "none");
});
</script>]]>
|
696
| <![CDATA[<script type="text/javascript">
var ddlEstacao = document.getElementById("buscaArredores_ddlEstacao");
if (window.addEventListener) {
document.getElementsByTagName('body')[0].addEventListener('load',verificaselecao,false);
ddlEstacao.addEventListener('change', verificaselecao, false);
} else {
document.getElementsByTagName('body')[0].attachEvent('onload', verificaselecao);
ddlEstacao.attachEvent('onchange', verificaselecao);
}
function verificaselecao() {
if (ddlEstacao.value != "0") {
window.location = " points-of-interest.aspx" + "?estacaoId=" + ddlEstacao.value;
}
}
</script>]]>
|
732
| <![CDATA[<script type="text/javascript">
function carregarIframe(mapa,enderecoMapa) {
alert('oi');
document.getElementById('ifrMapa').src = mapa;
document.getElementById('exibirMapa').href = enderecoMapa;
}
</script>]]>
|
833
| <![CDATA[<script type="text/javascript">
$(function () {
var linha, estacao, estacaoLinha, xmlEstacao;
var caminhoXml = '/app/trajeto/xt/estacoesTipoXML.asp';
$.ajax({
type: "GET",
url: caminhoXml,
dataType: "xml",
success: function (xml) {
$(xml).find("estacoes").each(function () {
$(this).find("estacao").each(function () {
linha = $(this).attr("tipo") + " - Linha " + $(this).attr("linha");
estacao = $(this).attr("nome");
estacaoId = $(this).attr("estacaoId");
xmlEstacao = this;
$("#selectEmbarque")[0].options[$("#selectEmbarque")[0].options.length] = new Option(estacao + ' (' + linha + ')', estacaoId);
$("#selectDesembarque")[0].options[$("#selectDesembarque")[0].options.length] = new Option(estacao + ' (' + linha + ')', estacaoId);
});
});
$("#selectEmbarque").change(function () {
estacaoLinha = $(this).val();
if (estacaoLinha != 0) {
$(xml).find("linha").each(function () {
$(this).find("estacao").each(function () {
xmlEstacao = this;
if (estacaoLinha == $(xmlEstacao).attr('estacaoId')) {
selecionado();
}
});
});
}
});
$("#selectDesembarque").change(function () {
estacaoLinha = $(this).val();
if (estacaoLinha != 0) {
$(xml).find("linha").each(function () {
$(this).find("estacao").each(function () {
xmlEstacao = this;
if (estacaoLinha == $(xmlEstacao).attr('estacaoId')) {
selecionado();
}
});
});
}
});
}
});
});
var alertaDisparado = false;
function selecionado() {
var embarque = document.getElementById('selectEmbarque');
var desembarque = document.getElementById('selectDesembarque');
if (desembarque.value != "0" && embarque.value != "0") {
if (desembarque.value == embarque.value) {
if (!alertaDisparado) {
alert("The place of Arrival must be different from the place of boarding");
alertaDisparado = true;
} else {
alertaDisparado = false;
}
} else {
window.location.href = "/en/your-trip/where-are-you-going/trajeto.aspx?origemId=" + embarque.value + "&destinoId=" + desembarque.value;
}
}
}
var slDesembarque = document.getElementById('selectDesembarque');
var slEmbarque = document.getElementById('selectEmbarque');
if (window.addEventListener) {
slDesembarque.addEventListener('change', selecionado, false);
slEmbarque.addEventListener('change', selecionado, false);
} else {
slDesembarque.attachEvent('onchange', selecionado);
slEmbarque.attachEvent('onchange', selecionado);
}
</script>]]>
|