/* ----- */

function Ouvre_Lien(lien) {
    if (lien != "") {
        window.open(lien, "Conso");
    }
}

function rollover_txt(id_span, txt) {
    document.getElementById(id_span).innerHTML = txt;
}

function rollout_txt(id_span) {
    document.getElementById(id_span).innerHTML = "";
}

function Contacter() {
    Ouvrir('contact.aspx');
}

function MentionsLegales() {
    Ouvrir('mentions.aspx');
}

// fonction ouvrant une nouvelle fenetre avec ascenceur
function Ouvrir(url) {
    param = "toolbar=0,scrollbars=1,location=0,status=0,menubar=0,width=495,height=489";
    if (navigator.appName.indexOf("Microsoft") >= 0) {
        param += ',left=250,top=25';
    }
    else {
        param += ',screenX=250,screenY=25';
    }
    floater = window.open(url, "mywindow", param);
}

