var lstlinea = '';
var lstparada = '';
var refreshing = false;

function mostrarParadas( idlinea ) {

	parxmlhttp = getXMLHttp();

	lstlinea = idlinea;

	parxmlhttp.open("GET", "/code/gethorarios.php?idl=" + idlinea, true);
	parxmlhttp.onreadystatechange = function() {
		if (parxmlhttp.readyState == 4) {
			/* Si no es un refresco automático limpiamos el panel de información de la parada */
			if (!refreshing) {
				document.getElementById( 'cinfoparada' ).innerHTML = '';
			} else {
				refreshing = false;
			}
			document.getElementById( 'chorariosloading' ).style.display = 'none';
			document.getElementById( 'chorarios' ).innerHTML = parxmlhttp.responseText;
		}
	}
	document.getElementById( 'chorarios' ).innerHTML = '';
	document.getElementById( 'chorariosloading' ).style.display = 'block';
	parxmlhttp.send(null);
}

