function getMovieName(movieName){
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    }
    else {
        return document[movieName]
    }
}

function sendFormGET(url){
    if (window.XMLHttpRequest) 
        var ajaxObject = new XMLHttpRequest();
    else 
        if (window.ActiveXObject) 
            var ajaxObject = new ActiveXObject("Microsoft.XMLHTTP");
        else 
            if (window.ActiveXObject) 
                var ajaxObject = new ActiveXObject("Msxml2.XMLHTTP");
            else 
                return (false);
    ajaxObject.open("GET", url, false);
    if (ajaxObject.readyState == 1) {
    }
    ajaxObject.send(null);
    if (ajaxObject.readyState == 4) {
        return (ajaxObject.responseText)
    }
    else 
        return (false)
}

//-- Carreguem els noms de les sorties d'una destinacio.

function destinoSalidas(destino){

    var reproductorFlash = getMovieName("mapa");

    var resposta = sendFormGET("http://www.kurutravel.es/libs/mapa/destino_salidas.php?destino=" + destino);
  	reproductorFlash.cargaDestinoSalidas(resposta);

}

//-- Carreguem el numero de sortides d'una destinacio.

function destinoNumSalidas(destino, op){
	var reproductorFlash = getMovieName("mapa");
	var resposta = sendFormGET("http://www.kurutravel.es/libs/mapa/destino_numero_salidas.php?destino=" +destino+"&op="+op);
	reproductorFlash.cargaDestinoNumSalidas(destino, resposta);

}

function continenteDestinos(destino){
	
	var reproductorFlash = getMovieName("mapa");
	var resposta = sendFormGET("http://www.kurutravel.es/libs/mapa/continente_destino.php?continente=" +destino);
	reproductorFlash.cargaContinenteDestinos(resposta);
	
}

