61
| <![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>]]>
|
439
| <![CDATA[<script type="text/javascript">
function abrePopup()
{
window.open("eventos/evento-trem.aspx", "nome", "width=376, height=608, scrollbar=no, location=no, directories=no, status=no, menubar=no, toolbar=no, resizable=no");
}
</script>]]>
|
882
| <![CDATA[<script type="text/javascript">
function buscarEstacao() {
if (document.getElementById("estacoes").value != "#") {
window.location.href = document.getElementById("estacoes").value;
}
};
</script>]]>
|
1381
| <![CDATA[<script>
var cookieAlert = $.cookie("alert");
if (cookieAlert != '1') {
$("#guardaFundoFloater").css("display", "block");
$("#conteudoFloater").css("display", "block");
$.cookie("alert", 1, {expires: 1});
}else{
$("#guardaFundoFloater").css("display", "block");
$("#conteudoFloater").css("display", "block");
}
</script>]]>
|
1398
| <![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;
$("#embarque")[0].options[$("#embarque")[0].options.length] = new Option(estacao + ' (' + linha + ')', estacaoId);
$("#desembarque")[0].options[$("#desembarque")[0].options.length] = new Option(estacao + ' (' + linha + ')', estacaoId);
});
});
$("#embarque").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')) {
}
});
});
}
});
$("#desembarque").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')) {
}
});
});
}
});
}
});
});
function selecionado() {
var embarque = document.getElementById('embarque');
var desembarque = document.getElementById('desembarque');
if (desembarque.value != "0" && embarque.value != "0") {
if (desembarque.value == embarque.value) {
alert("O local de desembarque deve ser diferente do local de embarque");
} else {
window.location.href = "/sua-viagem/trajeto/trajeto.aspx?origemId=" + embarque.value + "&destinoId=" + desembarque.value;
}
} else {
alert("Selecione os locais de embarque e desembarque");
}
}
</script>]]>
|
1485
| <![CDATA[<script type="text/javascript">
function fecharFloater() {
$("#guardaFundoFloater").css("display", "none");
$("#guardaFloater").css("display", "none");
}
$(function () {
$("#botaoFecharFloater").click(function () {
fecharFloater();
});
$("#guardaFundoFloater").click(function () {
fecharFloater();
});
});
function fecharFloater1() {
$("#guardaFundoFloater1").css("display", "none");
$("#guardaFloater1").css("display", "none");
}
$(function () {
$("#botaoFecharFloater1").click(function () {
fecharFloater();
});
$("#guardaFundoFloater1").click(function () {
fecharFloater();
});
});
</script>]]>
|