var childKml;
var childHtml;

function IgcPopup(map) {
    destroyChildren();
    var url = "http://www.victorb.fr/visugps/visugps.html?track=" +
              "http://cfd.ffvl.fr/cfd/getIgcFile.php?" +
              map;
    var width = 800;
    var height = 600;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var attributes = "width=" + width + ",height=" + height +
    ",left=" + left + ",top=" + top +
    ",screenX=" + left + ",screenY=" + top +
    ",location=no, toolbars=no, scrollbars=0" +
    ",resizable=yes, directories=no, status=no";

    childKml = window.open(url, "Carte", attributes );
}

function RecitPopup(recit) {
    var url = "http://cfd.ffvl.fr/carNet/show.php?" + recit;
    destroyChildren();
    var width = 800;
    var height = 600;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var attributes = "width=" + width + ",height=" + height +
    ",left=" + left + ",top=" + top +
    ",screenX=" + left + ",screenY=" + top +
    ",location=no, toolbars=no, scrollbars=1" +
    ",resizable=yes, directories=no, status=no";

    childKml = window.open(url, "Recit", attributes );
}

function destroyChildren() {
    if (childKml && childKml.closed == false) {
        childKml.close();
        }

    if (childHtml && childHtml.closed == false) {
        childHtml.close();
        }
}

